/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / var-templ45.C
blob444a8a22a852f7cc21d40551ffc8a03b92dfa763
1 // PR c++/67810
2 // { dg-do compile { target c++14 } }
4 template <class...>
5 constexpr bool Test = true;
7 template <typename...Ts, bool = (Test<Ts&&...>)>
8 void f();