blob: 0ce8ff293abfc4dc9d48bb58ce79aa16f1b71af2 [file] [log] [blame]
let a = 0;
try {
a = a + 1;
} finally {
a = a + 2;
}
return a;