// { dg-do compile { target concepts } } template struct A { static const int x = 42; }; template concept R42 = A::x == 42; static_assert (!R42);