summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/redecl-15.c
blob: ff484c9954205eb27a7d38787853aa5f28ee1de2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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'" } */
  }
}