// PR c++/94186 // { dg-do compile { target concepts } } template struct is_small { enum { value = sizeof(T) <= 4 }; }; template requires is_small::value // { dg-error "bool" } void fun(T) {} template void fun(T) {} int main() { fun(1); // { dg-message "" } }