mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-07 22:32:05 +00:00
1 line
330 B
Plaintext
1 line
330 B
Plaintext
|
/* Deviance Test 3.3.10.1: Ensure macro bodies contain only complete tokens */
#define BadExp1 $
#define BadExp2 @~
#define BadChar1 'a
#define BadChar2 z'
#define BadString1 "not a complete string
#define BadString2 nor is this"
main ()
{
printf ("Failed Deviance Test 3.3.10.1\n");
}
|