xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_052.c (revision 122b5006ee1bd67145794b4cde92f4fe4781a5ec)
1 /*	$NetBSD: msg_052.c,v 1.3 2021/08/27 20:16:50 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