Home | History | Annotate | Line # | Download | only in lint1
msg_085.c revision 1.4
      1 /*	$NetBSD: msg_085.c,v 1.4 2022/06/15 20:18:31 rillig Exp $	*/
      2 # 3 "msg_085.c"
      3 
      4 // Test for message: dubious tag declaration: %s %s [85]
      5 
      6 /* expect+1: warning: dubious tag declaration: struct in_argument [85] */
      7 void declare_struct(struct in_argument *);
      8 /* expect+1: warning: dubious tag declaration: union in_argument [85] */
      9 void declare_union(union in_argument *);
     10 /* expect+1: warning: dubious tag declaration: enum in_argument [85] */
     11 void declare_enum(enum in_argument *);
     12 
     13 /* expect+1: warning: struct 'ok' never defined [233] */
     14 struct ok;
     15 extern int ok(struct ok *);
     16