Home | History | Annotate | Line # | Download | only in lint1
msg_109.c revision 1.2
      1 /*	$NetBSD: msg_109.c,v 1.2 2021/01/08 21:25:03 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)
      8 {
      9 	return arg + (void)4;
     10 }
     11