Home | History | Annotate | Line # | Download | only in lint1
      1 /*	$NetBSD: msg_015.c,v 1.6 2025/04/12 15:49:50 rillig Exp $	*/
      2 # 3 "msg_015.c"
      3 
      4 // Test for message: function returns invalid type '%s' [15]
      5 
      6 /* lint1-extra-flags: -X 351 */
      7 
      8 typedef int array[5];
      9 
     10 /* expect+1: error: function returns invalid type 'array[5] of int' [15] */
     11 array invalid(void);
     12