OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / ctor6.C
1 // PR c++/25663
2
3 template<int> struct A
4 {
5   A(int);
6 };
7
8 void foo()
9 {
10   A<0>(A<0>(0));
11 }