mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 18:31:43 +00:00
20 lines
332 B
C++
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");
|
|
}
|