msg_058.c revision 1.4
11.4Srillig/* $NetBSD: msg_058.c,v 1.4 2022/06/20 21:13:36 rillig Exp $ */ 21.1Srillig# 3 "msg_058.c" 31.1Srillig 41.4Srillig// Test for message: type of '%s' does not match prototype [58] 51.1Srillig 61.3Srilligint function(int, char, const char *); 71.3Srillig 81.3Srilligint 91.3Srilligfunction(i, dbl, str) 101.3Srillig int i; 111.3Srillig double dbl; 121.3Srillig const char *str; 131.4Srillig/* expect+1: error: type of 'dbl' does not match prototype [58] */ 141.3Srillig{ 151.3Srillig return i + (int)dbl + str[0]; 161.3Srillig} 17