// { dg-do compile { target c++17 } } // { dg-options "-fconcepts" } template concept C = __is_class(T); template requires C void f(T x) { } // Non-dependent args are checked even in dependent scope. template void h(T x) { f(0); // { dg-error "" } } int main() { f(0); // { dg-error "" } }