blob: 444a8a22a852f7cc21d40551ffc8a03b92dfa763 [file] [log] [blame]
// PR c++/67810
// { dg-do compile { target c++14 } }
template <class...>
constexpr bool Test = true;
template <typename...Ts, bool = (Test<Ts&&...>)>
void f();