1 /* $NetBSD: msg_052.c,v 1.7 2025/01/03 03:14:47 rillig Exp $ */ 2 # 3 "msg_052.c" 3 4 // Test for message: cannot initialize parameter '%s' [52] 5 6 /* lint1-extra-flags: -X 351 */ 7 8 int 9 /* expect+1: warning: function definition for 'definition' with identifier list is obsolete in C23 [384] */ 10 definition(i) 11 /* expect+1: error: cannot initialize parameter 'i' [52] */ 12 int i = 3; 13 { 14 return i; 15 } 16