blob: 6905252ffe660a2eea32e8b45e24d42f1d66f1c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $NetBSD: d_long_double_int.c,v 1.6 2023/07/07 19:45:22 rillig Exp $ */
# 3 "d_long_double_int.c"
/* PR bin/39639: writing "long double" gave "long int" */
/* lint1-extra-flags: -X 351 */
int
fail(long double *a, long int *b)
{
/* expect+1: warning: illegal combination of 'pointer to long double' and 'pointer to long', op '==' [124] */
return a == b;
}
|