(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
constexpr-variadic.C
// { dg-do compile { target c++11 } }
template<class... T>
constexpr bool variadics(T&&...) { return true; }

struct IsLiteral {};

constexpr bool variadic_var = variadics(0, true, 1.2, IsLiteral{}); // Error, so below

int main() {}