1 /* u_1_1.c: Undefined behaviors on unterminated line, comment or macro. */
2
main(void)3 main( void)
4 {
5
6 /* u.1.1: End of a source file without <newline>. */
7 #include "unbal3.h"
8 int e_1;
9
10 /* u.1.2: End of a source file with <backslash><newline>. */
11 #include "unbal4.h"
12 ;
13
14 /* u.1.3: End of a source file with an unterminated comment. */
15 #include "unbal5.h"
16 */
17
18 /* u.1.4: End of a source file with an uncompleted macro call. */
19 #include "unbal6.h"
20 y);
21
22 return 0;
23 }
24
25