blob: 22fc5db22189352b563287395dfe06a9cc6421e6 [file] [log] [blame]
/* Verify that cpp doesn't screw up the line numbering when a macro argument
extends over multiple lines. */
/* { dg-do compile } */
#define FOO(x) /* nothing */
void
func(void)
{
FOO(i
= 4)
else; /* { dg-error "(parse|syntax) error" "error on this line" { target *-*-* } { 12 } } */
}