1 /* $NetBSD: msg_188.c,v 1.7 2024/01/28 08:17:27 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: no automatic aggregate initialization in traditional C [188] */ 22 /* expect+1: warning: 'local' set but not used in function 'function' [191] */ 23 struct point local = { 24 3, 25 4, 26 }; 27 } 28