// PR c++/17695 template struct A { T t; A(); }; struct B { B() { typedef int C; A a; } } b;