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