xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_214.c (revision 3117ece4fc4a4ca4489ba793710b60b0d26bab6c)
1 /*	$NetBSD: msg_214.c,v 1.6 2023/08/06 19:44:50 rillig Exp $	*/
2 # 3 "msg_214.c"
3 
4 // Test for message: function '%s' expects to return value [214]
5 
6 /* lint1-extra-flags: -X 351 */
7 
8 int
9 int_function(void)
10 {
11 	/* expect+1: error: function 'int_function' expects to return value [214] */
12 	return;
13 }
14