blob: 9fc3f683385f105b4a82cc64b0a1f0aa7f261b71 [file] [log] [blame]
// PR c++/27665
template<int> struct A
{
struct B
{
struct C {};
};
};
template<int N> void foo()
{
class A<N>::B::C X;
}
void bar()
{
foo<0>();
}