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