// { dg-do compile { target c++20 } } template concept Concept = requires () { typename T::member_type1; typename T::member_type2; }; struct model { using member_type1 = int; using member_type2 = int; }; template struct S {}; S s;