Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / tree-ssa / pr22404.C
blob2c6b8cd2729464447c6066c1940eb836ada46c20
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 /* We were not getting the offset of a in B and a in C::B correct, 
5    causing an abort.  */
6 struct A { A(); };
8 struct B : A
10     A a;
13 struct C : B { };
15 C c;