msg_195.c revision 1.3
1/*	$NetBSD: msg_195.c,v 1.3 2022/06/16 16:58:36 rillig Exp $	*/
2# 3 "msg_195.c"
3
4// Test for message: case not in switch [195]
5
6int
7example(int x)
8{
9	/* expect+1: error: case not in switch [195] */
10case 1:
11	/* expect+1: error: case not in switch [195] */
12case 2:
13	return x;
14}
15