aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/rtti/typeid1.C
blob: e26517576b9b053e835e3f2c33e9e413a12f889b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <typeinfo>

struct A {
  virtual ~A() {}
};

int main() {
   A* a = new A;
   typeid(*a).name();
}