URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [warn/] [main-2.C] - Rev 318
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Make sure that the type of f1 does not change
// after the error of main about not returning
// int.
// From Pekka Vuorela <pvuorela@iki.fi>
// PR c++/23229
void f1();
void
main() /* { dg-error "must return" } */
{
f1();
}
void f1()
{
}
Go to most recent revision | Compare with Previous | Blame | View Log