1 2 3 4 5 6 7
// { dg-do compile { target concepts } } template<typename T, typename U = T> concept C3 = true; template<class T> struct s1 { template <C3<T> U> void f() { } };