1 /* $NetBSD: msg_248.c,v 1.4 2023/01/21 17:48:29 rillig Exp $ */ 2 # 3 "msg_248.c" 3 4 // Test for message: floating-point constant out of range [248] 5 6 float fits_flt = 1e37f; 7 /* expect+1: warning: floating-point constant out of range [248] */ 8 float too_large_flt = 1e40f; 9 10 double fits_dbl = 1e300; 11 /* expect+1: warning: floating-point constant out of range [248] */ 12 double too_large_dbl = 1e310; 13