Blame test-c/u_1_8.c

Packit Service 8bf002
/* u_1_8.c:     Undefined behaviors on unterminated quotations. */
Packit Service 8bf002
Packit Service 8bf002
/* u.1.8:   Unterminated character constant.    */
Packit Service 8bf002
/*  The following "comment" may not interpreted as a comment but swallowed by
Packit Service 8bf002
        the unterminated character constant.    */
Packit Service 8bf002
#error  I can't understand. /* Token error prior to execution of #error.    */
Packit Service 8bf002
Packit Service 8bf002
main( void)
Packit Service 8bf002
{
Packit Service 8bf002
/* u.1.9:   Unterminated string literal.    */
Packit Service 8bf002
    char *  string =
Packit Service 8bf002
    "String literal
Packit Service 8bf002
    across the lines.
Packit Service 8bf002
"
Packit Service 8bf002
;
Packit Service 8bf002
    return  0;
Packit Service 8bf002
}
Packit Service 8bf002
Packit Service 8bf002
/* u.1.10:  Unterminated header-name.   */
Packit Service 8bf002
#include    
Packit Service 8bf002