URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [access22.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
template <int I> struct B { };
template <class T>
B<T::I> f();
class A
{
static const int I = 42;
template <class T> friend B<T::I> f();
};
int main()
{
f<A>();
}
Go to most recent revision | Compare with Previous | Blame | View Log