xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_015.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_015.c,v 1.4 2022/04/01 22:07:23 rillig Exp $	*/
2 # 3 "msg_015.c"
3 
4 // Test for message: function returns illegal type '%s' [15]
5 
6 typedef int array[5];
7 
8 /* expect+1: error: function returns illegal type 'array[5] of int' [15] */
9 array invalid(void);
10