aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/concepts-defarg1.C
blob: c3ed30914d887dcc20effa51cb96398341cf8738 (plain)
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() { }
};