summaryrefslogtreecommitdiff
path: root/tests/utils/test2.cpp
blob: ffd54a42296b24d691c89d6203f9972ea6c081da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "TypeInfo.hpp"

#include <map>
#include <iostream>

namespace Space {

class Base {
};

class Derived : public Base {
};

}

using namespace Space;
typedef std::map<std::string, Derived> mapType;

int main( void )
{
	mapType m;

	std::cout << demangle( typeid( m ) ) << std::endl;

	return 0;
}