// { dg-do compile { target c++20 } } // { dg-additional-options "-fconcepts" } namespace X { template constexpr bool x = true; } template using helper = void; template concept C = requires { requires X::x; typename helper; }; static_assert(C);