xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_237.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_237.c,v 1.3 2022/06/11 12:24:00 rillig Exp $	*/
2 # 3 "msg_237.c"
3 
4 // Test for message: redeclaration of formal parameter '%s' [237]
5 
6 /* See also message 21, which has the same text. */
7 
8 /*ARGSUSED*/
9 void
10 /* expect+1: error: redeclaration of formal parameter 'param' [237] */
11 prototype_with_duplicate_parameter(int param, int param)
12 {
13 }
14