aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/redecl-5.c
blob: 15b1f8c8ec4b9ed8d6fe2caeab021915f555ca1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Test for multiple declarations and composite types.  Diagnosis of
   incompatible implicit declaration.  */
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
/* { dg-do compile } */
/* { dg-options "-std=c89" } */

void
f (void)
{
  long z(); /* { dg-message "note: previous implicit declaration" } */
}

void
g (void)
{
  z(); /* { dg-error "incompatible" } */
  labs(1); /* { dg-warning "incompatible" } */
  printf("x"); /* { dg-warning "incompatible" } */
}