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