TypeScript/tests/cases/compiler/localVariablesReturnedFromCatchBlocks.ts
2014-07-12 17:30:19 -07:00

7 lines
151 B
TypeScript

function f() {
try {
} catch (e) {
var stack2 = e.stack;
return stack2; //error TS2095: Could not find symbol 'stack2'.
}
}