2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / typedef1.C
blob4d6a1e438e693b1bbe4e2776f55c6627ea31c32c
1 // { dg-do assemble  }
2 // Testcase for handling of typedef wierdness.
4 template <class T>
5 struct A
7   typedef enum
8   {
9     foo
10   } B;
12   A (B b);
15 template <class T>
16 A<T>::A (B b)