FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / shadow1.C
blobdfe99c7b22d5c39db540a0a842f113fd35658c8d
1 // Build don't link:
3 template <class T>
4 struct S {
5   typedef T X;
7   class C {
8     typedef T X;
9   };
12 template <int I>
13 struct S2 {
14   enum { A = I };
16   void f() {
17     int A;
18   }