// PR c++/68683 // { dg-do compile { target c++20 } } template struct is_same { static constexpr bool value = true; }; template concept Same = is_same::value; template concept Integral = requires { { T () } -> Same; }; struct A { using value_type = bool; }; int main () { Integral; Integral; return 0; }