Home | History | Annotate | Line # | Download | only in lint1
msg_213.c revision 1.4
      1 /*	$NetBSD: msg_213.c,v 1.4 2022/06/22 19:23:18 rillig Exp $	*/
      2 # 3 "msg_213.c"
      3 
      4 // Test for message: void function '%s' cannot return value [213]
      5 
      6 /* expect+2: warning: argument 'x' unused in function 'example' [231] */
      7 void
      8 example(int x)
      9 {
     10 	/* expect+1: error: void function 'example' cannot return value [213] */
     11 	return x;
     12 }
     13