1int fw(int p, int a, int b) { return ((p ? 42 : 0) ? a : b) == ( p ? a : b); }
2int bw(int p, int a, int b) { return ((p ? 0 : 42) ? a : b) == ( p ? b : a); }
3
4/*
5 * check-name: select-select-true-false0
6 * check-command: test-linearize -Wno-decl $file
7 *
8 * check-output-ignore
9 * check-output-returns: 1
10 */
11