blob: 8698147d521c47c370d349f5606e487376440adb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Copyright 2003 Free Software Foundation. */
/* { dg-do compile } */
/* { dg-options "-save-temps" } */
/* Make sure we report errors in the right line, even if separate
preprocessing is used. */
#define FOO()
int FOO( /* { dg-error "parse error|syntax error|expected" "error on this line" } */
), bar;
int baz FOO /* { dg-error "parse error|syntax error|expected" "error on this line" } */
;
|