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