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

14 lines
384 B
C++

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