// { dg-do compile { target c++17 } } // { dg-additional-options "-fconcepts" } template struct A { }; template requires false struct A { }; template struct A { static int i; }; int i = A::i;