aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/tests/handwritten/conditional-0.c
blob: 4aeb4659178f355894c1d2d67439cf5bf9240e6b (plain)
1
2
3
4
int main (int x, int y)
{
  return x == 0 ? x : y == 0 : y;
}