Home | History | Annotate | Line # | Download | only in lint1
      1 /*	$NetBSD: msg_213.c,v 1.6 2023/07/09 11:18:55 rillig Exp $	*/
      2 # 3 "msg_213.c"
      3 
      4 // Test for message: void function '%s' cannot return value [213]
      5 
      6 /* lint1-extra-flags: -X 351 */
      7 
      8 /* expect+2: warning: parameter 'x' unused in function 'example' [231] */
      9 void
     10 example(int x)
     11 {
     12 	/* expect+1: error: void function 'example' cannot return value [213] */
     13 	return x;
     14 }
     15