// { dg-do compile { target c++20 } } template struct A { }; template concept int_type = __is_same_as (T, int); template using intA = A; template struct B { intA a; // { dg-error "" } }; B b;