msg_337.c revision 1.1
11.1Srillig/*	$NetBSD: msg_337.c,v 1.1 2021/01/14 22:18:14 rillig Exp $	*/
21.1Srillig# 3 "msg_337.c"
31.1Srillig
41.1Srillig// Test for message: right operand of '%s' must not be bool [337]
51.1Srillig//
61.1Srillig// See d_c99_bool_strict.c for many more examples.
71.1Srillig
81.1Srillig/* lint1-extra-flags: -T */
91.1Srillig
101.1Srilligtypedef _Bool bool;
111.1Srillig
121.1Srilligvoid
131.1Srilligtest(bool);
141.1Srillig
151.1Srilligvoid
161.1Srilligexample(bool b, int i)
171.1Srillig{
181.1Srillig	test(i + b);		/* expect: 337 */
191.1Srillig	test(b);
201.1Srillig	test(i != 0);
211.1Srillig}
22