msg_157.c revision 1.5
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] */
13double white = 0xFFFFFFFF;
14