aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/concepts-defarg3.C
blob: 6fe82f91e4345b664abf475481948af99a517be4 (plain)
1
2
3
4
5
6
7
8
// PR c++/109859
// { dg-do compile { target c++20 } }

template<class>
concept C = true;

template <class = C> // { dg-error "invalid use of concept-name .C." }
int f();