mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-11 04:29:48 +00:00
1 line
359 B
Plaintext
1 line
359 B
Plaintext
|
/* Deviance Test 3.3.1.1: Ensure invalid simple macro definitions are */
/* flagged as errors */
#DEfine BadDef 10
#DEFINE anotherBaddef 20
#define 7*8 name goes first!
#define /* oops -- no name A-tall!!! */
main ()
{
printf ("Failed Deviance Test 3.3.1.1\n");
}
|