URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [parse/] [template1.C] - Rev 693
Compare with Previous | Blame | View Log
struct CPU {
typedef int (*pfun)();
template <pfun step1>
static int dispatch();
};
template<int>
static int foo();
template int CPU::dispatch<&template foo<2> > (); // { dg-error "" }