xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_209.c (revision e6298b924c5ba98f3a22919b56dab04a87cdbb1c)
1 /*	$NetBSD: msg_209.c,v 1.4 2023/07/07 19:45:22 rillig Exp $	*/
2 # 3 "msg_209.c"
3 
4 // Test for message: continue outside loop [209]
5 
6 /* lint1-extra-flags: -X 351 */
7 
8 void
example(void)9 example(void)
10 {
11 	/* expect+1: error: continue outside loop [209] */
12 	continue;
13 }
14