xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_178.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_178.c,v 1.3 2022/06/16 16:58:36 rillig Exp $	*/
2 # 3 "msg_178.c"
3 
4 // Test for message: initializer does not fit [178]
5 
6 char fits = 123;
7 
8 /* expect+1: warning: initializer does not fit [178] */
9 char does_not_fit = 0x12345678;
10