aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/redecl-15.c
blob: d2f48bd79b2df42b336b2fd45d672ce7ad03ac8b (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 "" } */

void
f (void)
{
  g(); /* { dg-message "note: previous implicit declaration of 'g' was here" } */
  {
    void g(); /* { dg-warning "conflicting types for 'g'" } */
  }
}