ORCA-C/Tests/Conformance/C2.6.0.2.CC
2017-10-21 18:40:19 -05:00

31 lines
605 B
C++

/* Conformance Test 2.6.0.2: Check if reserved words can be used as */
/* preprocessor macro names */
#define goto 1
#define if 2
#define return 3
main ()
{
while (goto != 1)
{
printf ("Failed Conformance Test 2.6.0.2\n");
exit (1);
}
while (if != 2)
{
printf ("Failed Conformance Test 2.6.0.2\n");
exit (1);
}
while (return != 3)
{
printf ("Failed Conformance Test 2.6.0.2\n");
exit (1);
}
printf ("Passed Conformance Test 2.6.0.2\n");
}