xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_223.c (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /*	$NetBSD: msg_223.c,v 1.2 2021/01/30 17:02:58 rillig Exp $	*/
2 # 3 "msg_223.c"
3 
4 // Test for message: end-of-loop code not reached [223]
5 
6 void
7 example(int n)
8 {
9 	for (int i = 0; i < n; i++)	/* expect: 223 */
10 		break;
11 }
12