// { dg-do compile { target c++20 } } template concept is_int = __is_same_as(T,int); template struct A { }; template struct A { typedef int I1; static const A::I1 j1 = 0; static int f(); }; template int A::f() { A::I1 i; return j1; } template struct A { typedef int I2; static const A::I2 j2 = 0; static int f(); }; template int A::f() { A::I2 i; return j2; } const int i1 = A::j1; const int i2 = A::j2; template struct B; template struct B { typedef int I4; static const B::I4 j4 = 0; static int f(); }; template int B::f() { B::I4 i; return j4; } template struct B { typedef int I5; static const B::I5 j5 = 0; static int f(); }; template int B::f() { B::I5 i; return j5; } int i4 = B::j4; int i5 = B::j5; int main() { B::f(); B::f(); }