mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 18:31:43 +00:00
1 line
339 B
Plaintext
1 line
339 B
Plaintext
|
/* 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");
}
|