1
0
mirror of https://github.com/byteworksinc/ORCA-C.git synced 2025-02-24 16:29:26 +00:00
2017-10-21 18:40:19 -05:00

20 lines
332 B
C++

/* Deviance Test 3.5.3.1: Ensure only macro names can be checked with the */
/* #ifdef and #ifndef commands */
main ()
{
#ifdef a * 2
#endif
#ifndef intPtr << 8
#endif
#ifdef 76.5 - 8
#endif
#ifndef
#endif
printf ("Failed Deviance Test 3.5.3.1\n");
}