blob: 46c50a6ef5c46af1061c0de356532699884cadc0 (
plain)
1
2
3
4
5
6
7
8
9
|
// { dg-do compile { target c++20 } }
template<typename T>
concept Int = __is_same_as(T, int);
template<Int... Ts = int> struct S1; // { dg-error "default argument" }
template<Int... = int> struct S2; // { dg-error "default argument" }
template<Int auto... Ns = 0> struct S3; // { dg-error "default argument" }
template<Int auto... = 0> struct S4; // { dg-error "default argument" }
|