1 /* $NetBSD: msg_223.c,v 1.4 2023/07/07 19:45:22 rillig Exp $ */ 2 # 3 "msg_223.c" 3 4 // Test for message: end-of-loop code not reached [223] 5 6 /* lint1-extra-flags: -X 351 */ 7 8 void example(int n)9example(int n) 10 { 11 /* expect+1: warning: end-of-loop code not reached [223] */ 12 for (int i = 0; i < n; i++) 13 break; 14 } 15