URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [auto31.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/51416
// { dg-do compile { target c++11 } }
template<typename T, typename... U> void foo(T, U... u)
{
auto foo(u...); // { dg-error "auto" }
}
void bar()
{
foo(0);
}
Go to most recent revision | Compare with Previous | Blame | View Log