OSDN Git Service

2009-09-04 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / torture / pr41257.C
1 /* { dg-do compile } */
2
3 struct A
4 {
5   virtual void foo();
6   virtual ~A();
7   int i;
8 };
9
10 struct B : virtual A {};
11
12 struct C : B
13 {
14   virtual void foo();
15 };
16
17 void bar()
18 {
19   C().foo();
20 }