// { dg-do run { target c++20 } } // { dg-skip-if "requires hosted libstdc++ for cassert" { ! hostedlib } } #include template concept C = __is_class(T); template concept D = C && __is_empty(T); struct X { } x; struct Y { int n; } y; template void g(T) { } // #1 template void g(T) { } // #2 template void g(T) { } // #3 int called; template<> void g(int) { called = 1; } // Specialization of #1 template<> void g(X) { called = 2; } // Specialization of #3 template<> void g(Y) { called = 3; } // Specialization of #2 int main() { g(0); assert(called == 1); g(x); assert(called == 2); g(y); assert(called == 3); }