* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-sizeof.C
blobfac979b668d7d5fac421b9fd5da887625e345a75
1 // PR c++/57673
2 // { dg-do compile { target c++11 } }
4 template< int ... p >
5 struct d {
6   int n = sizeof ... ( p );
7 };