[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / concepts / variadic3.C
blobf980e991775b0eecc53478a2283b2d4ec72b93d1
1 // PR c++/70036
2 // { dg-do compile { target c++14 } }
3 // { dg-options "-fconcepts" }
5 template <class T> concept bool C = true;
7 template <class... T>
8 void f(T...) requires C<T>;     // { dg-error "parameter pack" }