Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / debug / typedef3.C
blob366c69a6838033c5cf961a4ff80e09b23b5aa5dd
1 // PR debug/16261
2 // { dg-do compile }
4 namespace N
6   struct A {};
7   typedef A B;
10 void foo()
12   struct C
13   {
14     C(N::B) {}
15   };
17   N::B b;
18   C c(b);