xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_248.c (revision 3117ece4fc4a4ca4489ba793710b60b0d26bab6c)
1 /*	$NetBSD: msg_248.c,v 1.5 2023/03/28 14:44:35 rillig Exp $	*/
2 # 3 "msg_248.c"
3 
4 // Test for message: floating-point constant out of range [248]
5 
6 /* lint1-extra-flags: -X 351 */
7 
8 float fits_flt = 1e37f;
9 /* expect+1: warning: floating-point constant out of range [248] */
10 float too_large_flt = 1e40f;
11 
12 double fits_dbl = 1e300;
13 /* expect+1: warning: floating-point constant out of range [248] */
14 double too_large_dbl = 1e310;
15