xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_052.c (revision 867d70fc718005c0918b8b8b2f9d7f2d52d0a0db)
1 /*	$NetBSD: msg_052.c,v 1.4 2022/06/20 21:13:36 rillig Exp $	*/
2 # 3 "msg_052.c"
3 
4 // Test for message: cannot initialize parameter '%s' [52]
5 
6 int
7 definition(i)
8 	/* expect+1: error: cannot initialize parameter 'i' [52] */
9 	int i = 3;
10 {
11 	return i;
12 }
13