mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-12-22 07:30:54 +00:00
21 lines
569 B
C++
21 lines
569 B
C++
/* Special Conformance Test 3.6.0.3: Test explicit line numbering (#line) */
|
|
/* with filenames */
|
|
|
|
#include <stdio.h>
|
|
#define FileName(x) x
|
|
#define LINE_NUM 10
|
|
#line LINE_NUM FileName ("onemorefile")
|
|
|
|
main ()
|
|
{
|
|
if (strcmp (__FILE__, "onemorefile"))
|
|
{
|
|
printf ("Failed Special Conformance Test 3.6.0.3\n");
|
|
printf ("Macro substitution in LINE fails\n");
|
|
printf ("__FILE__ = %s\n", __FILE__);
|
|
}
|
|
|
|
else
|
|
printf ("Passed Special Conformance Test 3.6.0.3\n");
|
|
}
|