OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / friend44.C
1 // { dg-options "-fshow-column" }
2 //PR c++/28260
3
4 template<int> struct A
5 {
6   friend int foo(); // { dg-error "14:new declaration" }
7 };
8
9 void foo() { A<0> a; } // { dg-error "6:ambiguates old declaration" }