1 /* $NetBSD: msg_087.c,v 1.7 2024/10/14 18:43:24 rillig Exp $ */ 2 # 3 "msg_087.c" 3 4 // Test for message: static '%s' hides external declaration with type '%s' [87] 5 6 /* lint1-flags: -g -h -S -w -X 351 */ 7 8 extern long counter; 9 10 int 11 count(void) 12 { 13 /* expect+1: warning: static 'counter' hides external declaration with type 'long' [87] */ 14 static int counter; 15 return counter++; 16 } 17