Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / debug / typedef2.C
bloba216242c7bc390c7b68ec74a26aee1b18f616e49
1 // PR c++/17695
3 template<typename T> struct A
5   T t;
6   A();
7 };
9 struct B
11   B() { typedef int C; A<C> a; }
12 } b;