view gcc/testsuite/gcc.dg/Wnested-externs-2.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* PR c/70791 */
/* { dg-do compile } */
/* { dg-options "-Wnested-externs" } */

void
bar (void)
{
  extern int i; /* { dg-warning "14:nested extern declaration of 'i'" } */
  extern short foo (void); /* { dg-warning "16:nested extern declaration of 'foo'" } */
  extern struct S *s; /* { dg-warning "20:nested extern declaration of 's'" } */
}