msg_173.c revision 1.5
1/* $NetBSD: msg_173.c,v 1.5 2023/03/28 14:44:35 rillig Exp $ */ 2# 3 "msg_173.c" 3 4// Test for message: too many array initializers, expected %d [173] 5 6/* lint1-extra-flags: -X 351 */ 7 8/* expect+1: error: too many array initializers, expected 3 [173] */ 9int arr_limited[3] = { 1, 2, 3, 4 }; 10int arr_unlimited[] = { 1, 2, 3, 4 }; 11int arr_too_few[] = { 1, 2 }; 12