1 /* $NetBSD: msg_096.c,v 1.4 2021/04/05 01:35:34 rillig Exp $ */ 2 # 3 "msg_096.c" 3 4 // Test for message: cannot dereference non-pointer type [96] 5 6 int 7 unary_plus(int i) 8 { 9 return +i; 10 } 11 12 int 13 unary_minus(int i) 14 { 15 return -i; 16 } 17 18 int 19 unary_asterisk(int i) /* expect: 231 */ 20 { 21 return *i; /* expect: 96 *//* expect: 214 */ 22 } 23