xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_059.c (revision 2718af68c3efc72c9769069b5c7f9ed36f6b9def)
1 /*	$NetBSD: msg_059.c,v 1.3 2022/02/27 20:02:44 rillig Exp $	*/
2 # 3 "msg_059.c"
3 
4 // Test for message: formal parameter lacks name: param #%d [59]
5 
6 /* expect+4: error: formal parameter lacks name: param #2 [59] */
7 /* expect+3: error: formal parameter lacks name: param #3 [59] */
8 int
9 function_definition(int a, int, double)
10 {
11 	return a;
12 }
13