/* $NetBSD: msg_004.c,v 1.9 2024/11/30 11:27:20 rillig Exp $ */ # 3 "msg_004.c" // Test for message: illegal type combination [4] // // See also: // msg_005.c /* lint1-extra-flags: -X 351 */ // Lint does not detect "two or more data types", but GCC does. signed double signed_double; int ok_int; double ok_double; float _Complex ok_float_complex; /* expect+2: error: invalid type for _Complex [308] */ /* expect+1: error: illegal type combination [4] */ int _Complex illegal_int_complex; char enum { CHAR }; /* expect-1: error: illegal type combination [4] */ long struct { int member; }; /* expect-1: error: illegal type combination [4] */ struct str { }; /* expect+1: error: illegal type combination [4] */ struct str int struct_str_int; /* expect+1: error: illegal type combination [4] */ unsigned signed int unsigned_signed_int; /* expect+1: error: illegal type combination [4] */ unsigned unsigned int unsigned_unsigned_int; /* expect+1: error: illegal type combination [4] */ long long long int long_long_long_int; /* expect+1: error: illegal type combination [4] */ short double short_double; double short double_short; /* expect+1: error: illegal type combination [4] */ char double short char_double_short;