blob: d78e861ff0ab4dbf5cf40bb3d1ccabadec4cc0ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $NetBSD: msg_308.c,v 1.8 2023/03/28 14:44:35 rillig Exp $ */
# 3 "msg_308.c"
// Test for message: invalid type for _Complex [308]
/* lint1-extra-flags: -X 351 */
float _Complex float_complex;
double _Complex double_complex;
long double _Complex long_double_complex;
/* expect+1: error: invalid type for _Complex [308] */
_Complex plain_complex;
/* expect+2: error: invalid type for _Complex [308] */
/* expect+1: error: illegal type combination [4] */
int _Complex int_complex;
|