ORCA-C/Tests/Conformance/C2.1.2.3.CC

14 lines
376 B
Plaintext
Raw Normal View History

/* Conformance Test 2.1.2.3: Ensure '\' can be used to continue preprocessor */
/* lines */
#include \
<stdio.h>
#define CONSTANT \
5
main ()
{
if (CONSTANT != 5)
printf ("Failed Conformance Test 2.1.2.3\n");
else
printf ("Passed Conformance Test 2.1.2.3\n");
}