xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_178.c (revision 82d56013d7b633d116a93943de88e08335357a7c)
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