1 // PR c++/17695
2 
3 template<typename T> struct A
4 {
5   T t;
6   A();
7 };
8 
9 struct B
10 {
BB11   B() { typedef int C; A<C> a; }
12 } b;
13