Home | History | Annotate | Line # | Download | only in lint1
msg_053.c revision 1.3
      1 /*	$NetBSD: msg_053.c,v 1.3 2021/08/27 20:16:50 rillig Exp $	*/
      2 # 3 "msg_053.c"
      3 
      4 // Test for message: declared argument %s is missing [53]
      5 
      6 oldstyle(argument)
      7 	int argument;
      8 	/* expect+1: error: declared argument extra_argument is missing [53] */
      9 	int extra_argument;
     10 {
     11 	return argument;
     12 }
     13