#include <iostream>
#include <vector>
#include <typeinfo>
using namespace std;


template <class T>
void doNothing()
{
	T value;
	std::cout << "Type: " << typeid(value).name() << std::endl;
}

int main() {
	doNothing<std::vector<char>>();
	return 0;
}