aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/inherit/typeinfo1.C
blob: 794776ecbe84bcf77524ef0b664880ca2fdc8321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
typedef struct {
   virtual const char *blah() {
     return "Heya::blah";
   }
} Heya;

struct Grok : public Heya {
   virtual const char *blah() {
     return "Grok::blah";
   }
};

int main() {
   Grok *g = new Grok();
   delete g;
   return 0;
}