msg_276.c revision 1.6
11.2Sbouyer/* $NetBSD: msg_276.c,v 1.6 2025/04/12 15:49:50 rillig Exp $ */ 21.1Smatt# 3 "msg_276.c" 31.1Smatt 41.1Smatt// Test for message: '__%s__' is invalid for type '%s' [276] 51.1Smatt 61.1Smatt/* lint1-extra-flags: -X 351 */ 71.2Sbouyer 8/* expect+1: error: '__real__' is invalid for type 'double' [276] */ 9int real_int = __real__ 0.0; 10/* expect+1: error: '__imag__' is invalid for type 'double' [276] */ 11int imag_int = __imag__ 0.0; 12