xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_157.c (revision dcb32fd76a6d98c4a9af231446a80d630943641c)
1 /*	$NetBSD: msg_157.c,v 1.6 2023/08/26 10:43:53 rillig Exp $	*/
2 # 3 "msg_157.c"
3 
4 /* Test for message: C90 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: C90 treats constant as unsigned [157] */
13 double white = 0xFFFFFFFF;
14