URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [expr/] [cast3.C] - Rev 694
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
enum MyState
{
QUIT = 0,
START,
STOP,
PAUSE
};
double GetDouble()
{
return 1.0;
}
int main()
{
MyState the_state;
the_state = (MyState)GetDouble(); // { dg-bogus "invalid cast" }
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log