ORCA-C/Tests/Conformance/C3.5.1.3.CC
2017-10-01 17:47:47 -06:00

1 line
321 B
C++
Executable File

/* Conformance Test 3.5.1.3: Verify macro expansion in #if commands */
#define VAL1 1
#undef VAL1
#if !VAL1 /* VAL1 should be undefined, and so evaluate as 0 */
main ()
{
printf ("Passed Conformance Test 3.5.1.3\n");
}
#else
main ()
{
printf ("Failed Conformance Test 3.5.1.3\n");
}
#endif