FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup13.C
blob0c1e5460c4ff94895e2f28792c23e2a4bb4bdc34
1 // Origin: Mark Mitchell <mark@codesourcery.com>
3 int main() 
5   typedef double I;
6  
7   struct S1 {
8     typedef char I;
9     
10     struct S2;
11   };
12   
13   struct S1::S2 {
14     typedef I J;
15   };
17   return !(sizeof (S1::S2::J) == 1);