aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/concepts-pr60065.C
blob: b2b1aea433e1d67305ca9157ac4b5a4755b49108 (plain)
1
2
3
4
5
6
7
8
// PR c++/60065
// { dg-do compile { target c++14 } }
// { dg-additional-options "-fconcepts" }

template <int> void foo(auto... x);
template <typename> void foo2(auto... x);
template <int> void foo3(auto... x, auto y, auto... z);
template <typename> void foo4(auto... x, auto y, auto... z);