/* $NetBSD: d_type_conv2.c,v 1.5 2022/04/15 21:50:07 rillig Exp $ */ # 3 "d_type_conv2.c" /* Flag information-losing type conversion in argument lists */ /* * Before tree.c 1.427 from 2022-04-15, lint warned about conversions due to * prototype even in C99 mode, which is far away from traditional C to make * non-prototype functions an issue. */ /* lint1-flags: -h -w */ int f(float); void should_fail(void) { double x = 2.0; /* expect+1: warning: argument #1 is converted from 'double' to 'float' due to prototype [259] */ f(x); }