Home | History | Annotate | Line # | Download | only in lint1
msg_192.c revision 1.5
      1 /*	$NetBSD: msg_192.c,v 1.5 2023/07/07 19:45:22 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: argument '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