1 /* $NetBSD: msg_170.c,v 1.4 2021/04/05 01:35:34 rillig Exp $ */ 2 # 3 "msg_170.c" 3 4 // Test for message: first operand must have scalar type, op ? : [170] 5 6 struct number { 7 int value; 8 }; 9 10 _Bool 11 example(const struct number *num) /* expect: 231 */ 12 { 13 return *num ? 1 : 0; /* expect: 170 *//* expect: 214 */ 14 } 15