msg_156.c revision 1.2
1/*	$NetBSD: msg_156.c,v 1.2 2021/01/08 21:25:03 rillig Exp $	*/
2# 3 "msg_156.c"
3
4// Test for message: enum type mismatch, arg #%d [156]
5
6enum color {
7	RED,
8	GREEN,
9	BLUE
10};
11
12enum size {
13	SMALL,
14	MEDIUM,
15	LARGE
16};
17
18void
19print_color(enum color);
20
21void
22example(void)
23{
24	print_color(MEDIUM);
25}
26