Blame cpp-test/test-t/u_1_14.c

Packit Service 8bf002
/* u_1_14.c:    Undefined behaviors on undefined #line syntax.  */
Packit Service 8bf002
Packit Service 8bf002
/* { dg-do preprocess } */
Packit Service 8bf002
Packit Service 8bf002
/* u.1.14:  #line directive without an argument of line number. */
Packit Service 8bf002
#line   "filename"  /* { dg-error "not a positive integer| invalid format | Not a line number" } */
Packit Service 8bf002
Packit Service 8bf002
/* u.1.15:  #line directive with the second argument of other than string
Packit Service 8bf002
        literal.    */
Packit Service 8bf002
#line   1234    filename    /* { dg-error "not a valid filename| invalid format | Not a file name" } */
Packit Service 8bf002
Packit Service 8bf002
/* u.1.16:  Excessive argument in #line directive.  */
Packit Service 8bf002
#line   2345    "filename"  Junk    /* { dg-error "extra tokens| garbage | Excessive token sequence" } */
Packit Service 8bf002