URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [koenig7.C] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/34870
template <typename T>
struct Foo
{
friend void func(const Foo &) {}
};
void check(const Foo<int> & x)
{
func(x);
}
Go to most recent revision | Compare with Previous | Blame | View Log