• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

t(int p,int a,int b)1 int t(int p, int a, int b) { return ((p == p) ? a : b) == a; }
f(int p,int a,int b)2 int f(int p, int a, int b) { return ((p != p) ? a : b) == b; }
3 
4 /*
5  * check-name: select-constant-cond
6  * check-command: test-linearize -Wno-decl $file
7  *
8  * check-output-ignore
9  * check-output-returns: 1
10  */
11