1int bneq0(int a) { return a != 0; }
2int bnoteq0(int a) { return !(a == 0); }
3int bnotnot(int a) { return !(!a); }
4
5/*
6 * check-name: bool-neq0
7 * check-command: test-linearize -Wno-decl $file
8 * check-output-ignore
9 *
10 * check-output-excludes: seteq\\.
11 * check-output-contains: setne\\.
12 */
13