xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_216.c (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /*	$NetBSD: msg_216.c,v 1.2 2021/01/30 17:02:58 rillig Exp $	*/
2 # 3 "msg_216.c"
3 
4 // Test for message: function %s has return (e); and return; [216]
5 
6 /* implicit int */
7 random(int n)
8 {
9 	if (n < 0)
10 		return -3;
11 	if (n < 2)
12 		return;
13 }				/* expect: 216 */
14