Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / offset4.C
blob9325cc47cd02748f1dbaa3153c3157d21efa469e
1 // { dg-do assemble  }
2 // Bug: g++ complains about the use of A::p below.
4 struct A {
5   void *p;
6 };
8 struct B: public A {
9   int f ()
10     {
11       if (A::p)
12         return 1;
13       return 0;
14     }