// { dg-do compile { target c++17_only } } // { dg-options "-fconcepts" } // Check that constraints don't break unconstrained partial // specializations. template struct S { }; template struct S { }; template<> struct S { }; int main() { }