blob: 66cbe9f6272e8b0aece68acb275cf506954a5900 [file] [log] [blame]
// { dg-options "-std=gnu++0x" }
template<typename... T>
void eat(T...);
void f()
{
eat();
eat(1);
eat(1, 2);
eat(17, 3.14159, "Hello, World!");
}