xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_157.c (revision 2dd295436a0082eb4f8d294f4aa73c223413d0f2)
1 /*	$NetBSD: msg_157.c,v 1.5 2023/03/28 14:44:35 rillig Exp $	*/
2 # 3 "msg_157.c"
3 
4 /* Test for message: ANSI C treats constant as unsigned [157] */
5 
6 /* lint1-flags: -w -X 351 */
7 
8 /*
9  * A rather strange definition for an ARGB color.
10  * Luckily, 'double' has more than 32 significant binary digits.
11  */
12 /* expect+1: warning: ANSI C treats constant as unsigned [157] */
13 double white = 0xFFFFFFFF;
14