xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_213.c (revision ea3322651cb02140ff295e6169245331baa0d3c3)
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
example(int x)10 example(int x)
11 {
12 	/* expect+1: error: void function 'example' cannot return value [213] */
13 	return x;
14 }
15