xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_087.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_087.c,v 1.5 2022/06/20 21:13:36 rillig Exp $	*/
2 # 3 "msg_087.c"
3 
4 // Test for message: static '%s' hides external declaration [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 'counter' hides external declaration [87] */
14 	static int counter;
15 	return counter++;
16 }
17