blob: d7bbb073f812416a38a4a961618050afd428958c [file] [log] [blame]
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 "" }