blob: 3911327ad3ae7243eeafb67a6dea11a6236731e5 [file] [log] [blame]
// PR c++/59115
template<typename T, float, int, typename U> void foo(T, U) {} // { dg-error "valid type" "" { target c++17_down } }
void bar()
{
foo(0, 0); // { dg-error "matching" }
}