msg_223.c revision 1.2
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
6void
7example(int n)
8{
9	for (int i = 0; i < n; i++)	/* expect: 223 */
10		break;
11}
12