int i = 1;
int y;

if (i == 1)
  y = 10;
else
  y = 5;

_checkEqual(y, 10);
