1 // PR c++/67810
2 // { dg-do compile { target c++14 } }
3 
4 template <class...>
5 constexpr bool Test = true;
6 
7 template <typename...Ts, bool = (Test<Ts&&...>)>
8 void f();
9