Home | History | Annotate | Line # | Download | only in lint1
msg_109.c revision 1.4
      1 /*	$NetBSD: msg_109.c,v 1.4 2021/04/05 01:35:34 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 *//* expect: 214 */
     10 }
     11