1 // Core 1609
2 // { dg-require-effective-target c++11 }
3 
4 template<typename... T>
5 void f2(int a = 0, T... b, int c = 1);
6 
main()7 int main(){
8   f2<>(); // parameter a has the value 0 and parameter c has the value 1
9 }
10