Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gcc.dg/redecl-5.c @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
children |
line wrap: on
line source
/* 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" } */ }