// PR c++/99365 // { dg-do compile { target c++20 } } template concept C = true; template concept D = C && __is_same(T, U); template struct A { static const int i = 0; }; template auto V> struct A { static const int i = 1; }; static_assert(A::i == 1); static_assert(A::i == 0); static_assert(A::i == 0); static_assert(A::i == 1); template struct O { template struct A { static const int i = 0; }; template auto V> struct A { static const int i = 1; }; }; static_assert(O::A::i == 1); static_assert(O::A::i == 0); static_assert(O::A::i == 0); static_assert(O::A::i == 1);