mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 18:31:43 +00:00
15 lines
339 B
C++
15 lines
339 B
C++
/* Deviance Test 3.3.3.1: Ensure macros which expand into preprocessor */
|
|
/* commands are not parsed as preprocessor cmds */
|
|
|
|
#define includeFile #include <string.h>
|
|
#define badValue #define reallyBadValue 5
|
|
|
|
main ()
|
|
{
|
|
includeFile
|
|
badValue
|
|
printf ("Failed Deviance Test 3.3.3.1\n");
|
|
}
|
|
|
|
|