DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / unreachableFlowAfterFinally.ts
1234567891011121314
// @noImplicitReturns: true function f() { let x = 100; try { throw "WAT" } catch (e) { } finally { return x; } }