OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / crash42.C
1 // { dg-do compile }
2
3 // PR c++/22153
4
5 template<int> void foo();
6
7 template<int> struct A
8 {
9     template<> friend void foo<0>(); // { dg-error "" }
10 };