xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_190.c (revision b2baa50111d645353fa30b4deab0f79d93650c8c)
1 /*	$NetBSD: msg_190.c,v 1.5 2023/03/28 14:44:35 rillig Exp $	*/
2 # 3 "msg_190.c"
3 
4 // Test for message: empty array declaration for '%s' [190]
5 
6 /* lint1-extra-flags: -X 351 */
7 
8 /* expect+1: error: empty array declaration for 'empty_array' [190] */
9 double empty_array[] = {};
10 
11 double array[] = { 1 };
12