xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_119.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_119.c,v 1.3 2022/06/16 16:58:36 rillig Exp $	*/
2 # 3 "msg_119.c"
3 
4 // Test for message: conversion of '%s' to '%s' is out of range [119]
5 
6 float
7 too_big(void)
8 {
9 	/* expect+1: warning: conversion of 'double' to 'float' is out of range [119] */
10 	return 1.0e100;
11 }
12