mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 03:07:00 +00:00
14 lines
330 B
C++
14 lines
330 B
C++
/* 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");
|
|
}
|