xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_119.c (revision e6298b924c5ba98f3a22919b56dab04a87cdbb1c)
1 /*	$NetBSD: msg_119.c,v 1.4 2023/07/07 19:45:22 rillig Exp $	*/
2 # 3 "msg_119.c"
3 
4 // Test for message: conversion of '%s' to '%s' is out of range [119]
5 
6 /* lint1-extra-flags: -X 351 */
7 
8 float
too_big(void)9 too_big(void)
10 {
11 	/* expect+1: warning: conversion of 'double' to 'float' is out of range [119] */
12 	return 1.0e100;
13 }
14