blob: 4f21dc9ebf8d64cf0d1a7593552b09bcd3eb310a [file] [log] [blame]
// PR c++/25663
template<int> struct A
{
A(int);
};
void foo()
{
A<0>(A<0>(0));
}