Home | History | Annotate | Line # | Download | only in lint1
msg_192.c revision 1.4
      1 /*	$NetBSD: msg_192.c,v 1.4 2022/06/16 16:58:36 rillig Exp $	*/
      2 # 3 "msg_192.c"
      3 
      4 // Test for message: '%s' unused in function '%s' [192]
      5 
      6 /* ARGSUSED */
      7 void
      8 example(int param)
      9 {
     10 	/* expect+1: warning: 'local' unused in function 'example' [192] */
     11 	int local;
     12 }
     13