// PR c++/117887 // { dg-do compile { target c++20 } } template struct A { static constexpr bool value = V; }; template using AT = A; template struct B { using type = T; }; template void f() { static_assert( B>::type::value); static_assert(!B>::type::value); } template void f();