Home | History | Annotate | Line # | Download | only in lint1
msg_087.c revision 1.2
      1 /*	$NetBSD: msg_087.c,v 1.2 2021/01/03 15:35:00 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 	static int counter;
     14 	return counter++;
     15 }
     16