URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [parse/] [template13.C] - Rev 826
Compare with Previous | Blame | View Log
// PR c++/14002
template <typename T> void foo (T x) { x; }
void bar() { foo(0); }
struct A
{
friend void foo<int> (int);
};