xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_178.c (revision 9fb66d812c00ebfb445c0b47dea128f32aa6fe96)
1 /*	$NetBSD: msg_178.c,v 1.2 2021/01/24 16:12:45 rillig Exp $	*/
2 # 3 "msg_178.c"
3 
4 // Test for message: initializer does not fit [178]
5 
6 char fits = 123;
7 
8 char does_not_fit = 0x12345678;		/* expect: 178 */
9