// Like using-11.h, but additional kinds of declarations. struct A {}; template struct B {}; template <> struct B { using foo = int; }; template struct B { using bar = T; }; using C = int; inline int D = 0; #if __cpp_concepts >= 201907L template concept E = true; #endif