msg_059.c revision 1.4
11.4Srillig/*	$NetBSD: msg_059.c,v 1.4 2022/06/20 21:13:36 rillig Exp $	*/
21.1Srillig# 3 "msg_059.c"
31.1Srillig
41.4Srillig// Test for message: formal parameter #%d lacks name [59]
51.1Srillig
61.4Srillig/* expect+4: error: formal parameter #2 lacks name [59] */
71.4Srillig/* expect+3: error: formal parameter #3 lacks name [59] */
81.3Srilligint
91.3Srilligfunction_definition(int a, int, double)
101.3Srillig{
111.3Srillig	return a;
121.3Srillig}
13