xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_190.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_190.c,v 1.4 2022/06/22 19:23:18 rillig Exp $	*/
2 # 3 "msg_190.c"
3 
4 // Test for message: empty array declaration for '%s' [190]
5 
6 /* expect+1: error: empty array declaration for 'empty_array' [190] */
7 double empty_array[] = {};
8 
9 double array[] = { 1 };
10