FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup23.C
blob9deee9eda450c1ee6ab05e2754be35b75d901193
1 // Test for proper handling of type lookup if base class has field with the
2 // same name as the containing class.
3 // Build don't link:
5 struct a { int a; };
6 struct b : a {};
8 b x;
10 void foo ()
12   x.a = 22;