blob: ff484c9954205eb27a7d38787853aa5f28ee1de2 [file] [log] [blame]
/* Test for ICE with redeclaration in inner scope which is accepted
despite incompatible type. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-std=gnu89" } */
void
f (void)
{
g(); /* { dg-message "note: previous implicit declaration of 'g' was here" } */
{
void g(); /* { dg-warning "conflicting types for 'g'" } */
}
}