1 2 3 4 5 6 7 8 9 10 11
// { dg-options "-std=gnu++0x -g" } template<typename... T> void eat(T...) { } void f() { eat(); eat(1); eat(1, 2); eat(17, 3.14159, "Hello, World!"); }