Home | History | Annotate | Line # | Download | only in lint1
msg_062.c revision 1.4
      1 /*	$NetBSD: msg_062.c,v 1.4 2022/04/24 20:08:23 rillig Exp $	*/
      2 # 3 "msg_062.c"
      3 
      4 // Test for message: function prototype parameters must have types [62]
      5 
      6 /* expect+1: error: old style declaration; add 'int' [1] */
      7 outer() {
      8 	/* expect+2: warning: function prototype parameters must have types [62] */
      9 	/* expect+1: warning: dubious static function at block level: inner [93] */
     10 	static int inner(a);
     11 }
     12