foo(int p)1 int foo(int p)
2 {
3 int t = (p ? 42 : 0);
4 return (t ? 42 : 0) == ( p ? 42 : 0);
5 }
6
7 /*
8 * check-name: select-select-true-false1
9 * check-command: test-linearize -Wno-decl $file
10 *
11 * check-output-ignore
12 * check-output-returns: 1
13 */
14