URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [error2.C] - Rev 720
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/38656
// { dg-options "-std=c++0x" }
template<int> int foo();
template<typename F> void bar(F f)
{
f((foo<0>()=0)...); // { dg-error "pattern '\\(foo\\<0\\>\\)\\(\\)=0'" }
}
Go to most recent revision | Compare with Previous | Blame | View Log