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

25 lines
487 B
C

/* u_1_1.c: Undefined behaviors on unterminated line, comment or macro. */
main( void)
{
/* u.1.1: End of a source file without <newline>. */
#include "unbal3.h"
int e_1;
/* u.1.2: End of a source file with <backslash><newline>. */
#include "unbal4.h"
;
/* u.1.3: End of a source file with an unterminated comment. */
#include "unbal5.h"
*/
/* u.1.4: End of a source file with an uncompleted macro call. */
#include "unbal6.h"
y);
return 0;
}