aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/crash42.C
blob: d36ced473abff3183c5abe0875bbc44d38442fd3 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do compile }

// PR c++/22153

template<int> void foo();

template<int> struct A
{
    template<> friend void foo<0>(); // { dg-error "" }
};