Alessandro Bonazzi e075990ed3 Patch level : 12.0 no-patch
Files correlati     :
Commento            :

Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
2020-11-28 16:24:08 +01:00

18 lines
336 B
Raku

/* e_14_10.t: Overflow of constant expression in #if directive. */
/* 14.10: */
/* In C99, #if expression is evaluated in intmax_t */
#if __STDC_VERSION__ < 199901L
#include <limits.h>
#if LONG_MAX - LONG_MIN
#endif
#if LONG_MAX + 1 > SHRT_MAX
#endif
#if LONG_MIN - 1
#endif
#if LONG_MAX * 2
#endif
#endif