funcons-simple-0.1.0.3: tests/Kexceptions/Kexceptions04.smp
function main() {
var x = 1;
try { var x = 5; throw x; var y = x/0;} // division by zero unreachable
catch(y) {y = y + 2; print(y," ");} // new y here, the one declared by catch
print(x,"\n");
}
// 7 1