msg_178.c revision 1.4
1/*	$NetBSD: msg_178.c,v 1.4 2023/03/28 14:44:35 rillig Exp $	*/
2# 3 "msg_178.c"
3
4// Test for message: initializer does not fit [178]
5
6/* lint1-extra-flags: -X 351 */
7
8char fits = 123;
9
10/* expect+1: warning: initializer does not fit [178] */
11char does_not_fit = 0x12345678;
12