// Testcase from [expr.prim.id]/5 // { dg-do compile { target c++20 } } template struct A { static void f(int) requires false; }; void g() { A::f(0); // { dg-error "" "cannot call f" } void (*p1)(int) = A::f; // { dg-error "" "cannot take the address of f" } decltype(A::f)* p2 = nullptr; // { dg-error "" "the type decltype(A::f) is invalid" } }