1/*	$NetBSD: msg_191.c,v 1.5 2023/07/07 19:45:22 rillig Exp $	*/
2# 3 "msg_191.c"
3
4// Test for message: '%s' set but not used in function '%s' [191]
5
6/* lint1-extra-flags: -X 351 */
7
8void
9example(void)
10{
11	int local;
12
13	/* expect+1: warning: 'local' set but not used in function 'example' [191] */
14	local = 3;
15
16	local = 5;
17}
18