// PR c++/101247 // { dg-do compile { target concepts } } // A variant of concepts-memtmpl5.C that uses a partial specialization // of A instead of the primary template. template struct A; template requires true struct A { template static constexpr bool d = true; static void g() requires d; }; int main() { A::g(); }