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

24 lines
394 B
Raku

/* e_intmax.t: Overflow of constant expression in #if directive. */
#include <limits.h>
#include <stdint.h>
#if INTMAX_MAX - INTMAX_MIN
#endif
#if INTMAX_MAX + 1 > SHRT_MAX
#endif
#if INTMAX_MIN - 1
#endif
#if INTMAX_MAX * 2
#endif
#if LLONG_MAX - LLONG_MIN
#endif
#if LLONG_MAX + 1 > SHRT_MAX
#endif
#if LLONG_MIN - 1
#endif
#if LLONG_MAX * 2
#endif