1 /* $NetBSD: msg_163.c,v 1.3 2021/04/05 01:35:34 rillig Exp $ */ 2 # 3 "msg_163.c" 3 4 // Test for message: a cast does not yield an lvalue [163] 5 6 void 7 example(char *p, int i) 8 { 9 p++; 10 ((char *)p)++; /* XXX: why is this ok? */ 11 i++; 12 ((int)i)++; /* expect: 163 *//* expect: 114 */ 13 } 14