Alessandro Bonazzi
e075990ed3
Files correlati : Commento : Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
15 lines
349 B
Raku
15 lines
349 B
Raku
/* e_14_7.t: There is no keyword in #if expression. */
|
|
|
|
/* 14.7: sizeof operator is disallowed. */
|
|
/* Evaluated as: 0 (0)
|
|
Constant expression syntax error. */
|
|
#if sizeof (int)
|
|
#endif
|
|
|
|
/* 14.8: type cast is disallowed. */
|
|
/* Evaluated as: (0)0x8000
|
|
Also a constant expression error. */
|
|
#if (int)0x8000 < 0
|
|
#endif
|
|
|