blob: 00f62c84501618075eace9a5ca11779f6d00bd53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* 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 "'else' without a previous 'if'" "error on this line" } */
}
|