1 /* $NetBSD: msg_191.c,v 1.4 2022/06/16 16:58:36 rillig Exp $ */ 2 # 3 "msg_191.c" 3 4 // Test for message: '%s' set but not used in function '%s' [191] 5 6 void 7 example(void) 8 { 9 int local; 10 11 /* expect+1: warning: 'local' set but not used in function 'example' [191] */ 12 local = 3; 13 14 local = 5; 15 } 16