blob: 218e71706ac7df8800bedf11cf6f394d9c7d5dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Bug 8927: undeclared identifiers should give an error on the line
of that identifier, not on the line of the next token. */
/* { dg-do compile } */
/* { dg-options "" } */
void
foo(void)
{
bar /* { dg-error "undeclared|for each function" } */
;
}
|