OSDN Git Service

0a28f3ae2d4144d69891f6a396c4df3317821240
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / friend35.C
1 // Build don't link:
2
3 class foo {
4   friend void bar<int>(int); // ERROR - must be declared first - XFAIL *-*-*
5 };
6
7 template <typename T> void bar(T);