blob: a216242c7bc390c7b68ec74a26aee1b18f616e49 [file] [log] [blame]
// PR c++/17695
template<typename T> struct A
{
T t;
A();
};
struct B
{
B() { typedef int C; A<C> a; }
} b;