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

16 lines
443 B
Perl

/* u_1_14.t: Undefined behaviors on undefined #line syntax. */
/* u.1.14: #line directive without an argument of line number. */
#line "filename"
/* u.1.15: #line directive with the second argument of other than string
literal. */
#line 1234 filename
/* u.1.16: Excessive argument in #line directive. */
#line 2345 "filename" Junk
/* 14; "u_1_14.t"; or other undefined results. */
__LINE__; __FILE__;