xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_086.c (revision d16b7486a53dcb8072b60ec6fcb4373a2d0c27b7)
1 /*	$NetBSD: msg_086.c,v 1.7 2023/08/02 18:51:25 rillig Exp $	*/
2 # 3 "msg_086.c"
3 
4 // Test for message: automatic '%s' hides external declaration [86]
5 
6 /* lint1-flags: -S -g -h -w -X 351 */
7 
8 extern int identifier;
9 
10 int
11 local_auto(void)
12 {
13 	/* expect+1: warning: automatic 'identifier' hides external declaration [86] */
14 	int identifier = 3;
15 	return identifier;
16 }
17 
18 /* XXX: the function parameter does not trigger the warning. */
19 int
20 arg_auto(int identifier)
21 {
22 	return identifier;
23 }
24