Home | History | Annotate | Line # | Download | only in lint1
msg_192.c revision 1.6
      1 /*	$NetBSD: msg_192.c,v 1.6 2023/07/09 11:18:55 rillig Exp $	*/
      2 # 3 "msg_192.c"
      3 
      4 // Test for message: '%s' unused in function '%s' [192]
      5 
      6 /* lint1-extra-flags: -X 351 */
      7 
      8 void
      9 /* expect+1: warning: parameter 'param' unused in function 'example' [231] */
     10 example(int param)
     11 {
     12 	/* expect+1: warning: 'local' unused in function 'example' [192] */
     13 	int local;
     14 }
     15