// PR c++/92582 // { dg-do compile { target concepts } } template concept b = true; template struct A { template static constexpr bool d = b; template static void f(c) requires d; }; int main() { A::f(0); }