rt_gccstream/gcc/testsuite/g++.dg/other/nontype-1.C

8 lines
196 B
C

template <class Op>
bool asfun(Op f,
Op::first_argument_type a, // { dg-error "not a type" }
Op::second_argument_type b) // { dg-error "not a type" }
{
return Op(a, b);
}