mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-09 19:31:48 +00:00
1 line
332 B
C++
Executable File
1 line
332 B
C++
Executable File
/* 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");
|
|
}
|