* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-new2.C
blob413e0701d7ae0bd610875852dc96a8e031271cfe
1 // { dg-do run { target c++11 } }
2 // PR c++/32597
3 #include <assert.h>
4 #include <new>
6 template< class... Args > void f( Args... args )
8   { 
9     int x = 17;
10     (void)x;
11   }
13   {
14     int y(args...);
15     assert(y == 0);
16   }
20 int main()
22    f();