blob: 8accf8b5ac20b143259d8d39568c2e8e33f05e4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* $NetBSD: d_constant_conv2.c,v 1.6 2023/03/28 14:44:34 rillig Exp $ */
# 3 "d_constant_conv2.c"
/* Flag information-losing constant 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 */
/* lint1-extra-flags: -X 351 */
int f(unsigned int);
void
should_fail(void)
{
/* expect+1: warning: argument #1 is converted from 'double' to 'unsigned int' due to prototype [259] */
f(2.1);
}
|