mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-17 20:06:49 +00:00
1 line
362 B
C++
Executable File
1 line
362 B
C++
Executable File
/* Conformance test 2.2.0.3: Comments in preprocessor lines */
|
|
#define ten /* ten:
|
|
one greater
|
|
than nine
|
|
*/ (2 * 5)
|
|
main ()
|
|
{
|
|
if (ten == 10)
|
|
{
|
|
printf ("Passed Conformance Test 2.2.0.3\n");
|
|
}
|
|
else
|
|
{
|
|
printf ("Failed Conformance Test 2.2.0.3\n");
|
|
}
|
|
}
|