FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / offset4.C
blob2a5049105a4dcdb5c82c2c21ccdee4c658193c22
1 // Bug: g++ complains about the use of A::p below.
2 // Build don't link:
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     }