aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/concepts/auto3.C
blob: abfb20191251a8e93aee61d86b728aa8aac9c147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile { target c++17 } }
// { dg-options "-fconcepts" }

template <class...> class tuple {};

tuple<int> t;
tuple<auto> y = t;

tuple<int,double> t2;
tuple<auto...> x = t2;
tuple<auto...> x2 = t;

tuple<auto> y2 = t2;		// { dg-error "" }