18 lines
419 B
Perl
Raw Normal View History

/* 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;