URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [variadic-new2.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }
// { dg-options "-std=c++0x" }
// PR c++/32597
#include <assert.h>
#include <new>
template< class... Args > void f( Args... args )
{
{
int x = 17;
(void)x;
}
{
int y(args...);
assert(y == 0);
}
}
int main()
{
f();
}
Go to most recent revision | Compare with Previous | Blame | View Log