Home | History | Annotate | Line # | Download | only in lint1
msg_109.c revision 1.3
      1 /*	$NetBSD: msg_109.c,v 1.3 2021/01/31 11:12:07 rillig Exp $	*/
      2 # 3 "msg_109.c"
      3 
      4 // Test for message: void type illegal in expression [109]
      5 
      6 int
      7 example(int arg)			/* expect: 231 */
      8 {
      9 	return arg + (void)4;		/* expect: 109, 214 */
     10 }
     11