msg_173.c revision 1.3
1/*	$NetBSD: msg_173.c,v 1.3 2021/01/31 11:12:07 rillig Exp $	*/
2# 3 "msg_173.c"
3
4// Test for message: too many array initializers, expected %d [173]
5
6int arr_limited[3] = { 1, 2, 3, 4 };	/* expect: 173 */
7int arr_unlimited[] = { 1, 2, 3, 4 };
8int arr_too_few[] = { 1, 2 };
9