blob: 6552ec6e9686154968c0fa27ea76f2ff67900201 [file] [log] [blame]
// PR c++/48657
template<unsigned> struct A { typedef int T; };
template<unsigned> void f()
{
const unsigned D = 4;
A<D>::T t;
}