URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [parse/] [cond5.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/40566
void
f (int x, int y)
{
int c = x ? 23 : throw "bla";
short d = y ? throw "bla" : 23;
char e = x ? 23 : throw "bla";
long f = x ? 23 : throw "bla";
}
Go to most recent revision | Compare with Previous | Blame | View Log