// { dg-options "-std=gnu++0x" } template struct make_function_type { typedef R type(ArgTypes... args); }; template struct is_same { static const bool value = false; }; template struct is_same { static const bool value = true; }; int a0[is_same::type, int()>::value? 1 : -1]; int a1[is_same::type, int(float)>::value? 1 : -1]; int a2[is_same::type, int(float)>::value? 1 : -1]; int a3[is_same::type, int(float, double const)>::value? 1 : -1];