msg_032.c revision 1.3
11.3Srillig/* $NetBSD: msg_032.c,v 1.3 2022/04/05 23:09:19 rillig Exp $ */ 21.1Srillig# 3 "msg_032.c" 31.1Srillig 41.1Srillig// Test for message: argument type defaults to 'int': %s [32] 51.1Srillig 61.3Srilligadd(a, b, c) 71.3Srillig/* expect+3: warning: argument type defaults to 'int': a [32] */ 81.3Srillig/* expect+2: warning: argument type defaults to 'int': b [32] */ 91.3Srillig/* expect+1: warning: argument type defaults to 'int': c [32] */ 101.3Srillig{ 111.3Srillig return a + b + c; 121.3Srillig} 13