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