1// PR c++/25663
2
3template<int> struct A
4{
5  A(int);
6};
7
8void foo()
9{
10  A<0>(A<0>(0));
11}
12