ORCA-C/Tests/Deviance/D3.5.3.1.CC
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");
}