// PR c++/105652 // { dg-do compile { target c++20 } } // { dg-additional-options -g } template struct I {}; template concept C = [](I) { return true; } (I<0>{}); template struct S { }; template struct S { constexpr static bool value = true; }; static_assert(S::value);