xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_188.c (revision d16b7486a53dcb8072b60ec6fcb4373a2d0c27b7)
1 /*	$NetBSD: msg_188.c,v 1.6 2023/07/07 06:03:31 rillig Exp $	*/
2 # 3 "msg_188.c"
3 
4 /* Test for message: no automatic aggregate initialization in traditional C [188] */
5 
6 /* lint1-flags: -tw -X 351 */
7 
8 struct point {
9 	int x;
10 	int y;
11 };
12 
13 struct point global = {
14 	3,
15 	4,
16 };
17 
18 void
19 function()
20 {
21 	/* expect+2: warning: 'local' set but not used in function 'function' [191] */
22 	/* expect+1: warning: no automatic aggregate initialization in traditional C [188] */
23 	struct point local = {
24 		3,
25 		4,
26 	};
27 }
28