http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00110.html
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template13.C
blobb1c03690be53ffa446795024ec5fde13f8ffe2f0
1 // PR c++/14002
3 template <typename T> void foo (T x) { x; }
5 void bar() { foo(0); }
7 struct A
9   friend void foo<int> (int);