Home | History | Annotate | Line # | Download | only in lint1
msg_114.c revision 1.2
      1 /*	$NetBSD: msg_114.c,v 1.2 2021/01/08 21:25:03 rillig Exp $	*/
      2 # 3 "msg_114.c"
      3 
      4 // Test for message: %soperand of '%s' must be lvalue [114]
      5 
      6 void
      7 example(int a)
      8 {
      9 	3++;
     10 	// FIXME: lint error: ../common/tyname.c, 190: tspec_name(0)
     11 	// "string"++;
     12 	(a + a)++;
     13 }
     14