Home | History | Annotate | Line # | Download | only in lint1
msg_087.c revision 1.4
      1 /*	$NetBSD: msg_087.c,v 1.4 2022/06/15 20:18:31 rillig Exp $	*/
      2 # 3 "msg_087.c"
      3 
      4 // Test for message: static hides external declaration: %s [87]
      5 
      6 /* lint1-flags: -g -h -S -w */
      7 
      8 extern int counter;
      9 
     10 int
     11 count(void)
     12 {
     13 	/* expect+1: warning: static hides external declaration: counter [87] */
     14 	static int counter;
     15 	return counter++;
     16 }
     17