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

14 lines
376 B
C++

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