URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [parse/] [funptr1.C] - Rev 704
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/9282
// Origin: Thomas Richter <thor@math.tu-berlin.de>
// { dg-do compile }
typedef void (*fptr)();
struct A
{
template<int> static void foo() {}
template<fptr f> static void bar() { (*f)(); }
};
fptr f = A::bar< A::foo<0> >;
Go to most recent revision | Compare with Previous | Blame | View Log