blob: e26517576b9b053e835e3f2c33e9e413a12f889b [file] [log] [blame]
#include <typeinfo>
struct A {
virtual ~A() {}
};
int main() {
A* a = new A;
typeid(*a).name();
}