URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [koenig7.C] - Rev 693
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);
}