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

1 line
376 B
C++
Executable File

/* 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");
}