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