1 // { dg-do compile { target c++11 } }
2 template<typename... T>
eat(const T &...)3 void eat(const T&...) { }
4 
f()5 void f()
6 {
7   eat();
8   eat(1);
9   eat(1, 2);
10   eat(17, 3.14159, "Hello, World!");
11 }
12