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