Home | History | Annotate | Line # | Download | only in lint1
msg_154.c revision 1.3
      1 /*	$NetBSD: msg_154.c,v 1.3 2021/03/16 23:39:41 rillig Exp $	*/
      2 # 3 "msg_154.c"
      3 
      4 // Test for message: illegal combination of %s (%s) and %s (%s), arg #%d [154]
      5 
      6 void sink_int(int);
      7 
      8 void
      9 example(int *ptr)
     10 {
     11 	sink_int(ptr);		/* expect: 154 */
     12 }
     13