xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_054.c (revision a04395531661c5e8d314125d5ae77d4cbedd5d73)
1 /*	$NetBSD: msg_054.c,v 1.3 2021/01/31 11:12:07 rillig Exp $	*/
2 # 3 "msg_054.c"
3 
4 /* Test for message: trailing ',' prohibited in enum declaration [54] */
5 
6 /* lint1-flags: -tw */
7 
8 enum color {
9 	RED,
10 	GREEN,
11 	BLUE,
12 };				/* expect: 54 */
13