FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup22.C
blobc62ce50e12928bfa9104059d52235825f260208f
1 // Origin: GerhardTonn@gmx.de 
2 // Build don't link:
4 struct super {
5   union {
6     int myName;     
7     void* secondMember;         
8   };
9 };
11 struct sub : super {
12   int myName() { return 1; }