var x = 1
try {
  throw(x)
  x = 2
}
catch(e) {
  x = e + 3
}
assert_eqzal(4, x);
