msg_170.c revision 1.3
1/*	$NetBSD: msg_170.c,v 1.3 2021/01/31 11:12:07 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)	/* expect: 231 */
12{
13	return *num ? 1 : 0;		/* expect: 170, 214 */
14}
15