blob: 3cd3be3fe520869745e77a91cb25e9753f458378 (
plain)
1
2
3
4
5
6
7
8
9
|
/* Verify that a diagnostic is issued without crashing due to
--enable-checking catching a bug in the C front end. */
/* { dg-do compile } */
x()
{
foo (i);
/* { dg-error "undeclared" "undeclared-variable message" { target *-*-* } { 6 } } */
/* { dg-message "function it appears in" "reminder message" { target *-*-* } { 6 } } */
}
|