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
419 B
Perl

/* n_22.t: Tokenization of preprocessing number. */
#define EXP 1
/* 22.1: 12E+EXP is a preprocessing number, EXP is not expanded. */
/* 12E+EXP; */
12E+EXP;
/* 22.2: .2e-EXP is also a preprocessing number. */
/* .2e-EXP; */
.2e-EXP;
/* 22.3: + or - is allowed only following E or e, 12+EXP is not a
preprocessing number. */
/* Three tokens: 12 + 1; */
12+EXP;