DEBSOURCES
Skip Quicknav
sources / node-typescript / 5.0.4%2Bds1-2 / tests / cases / compiler / potentiallyUnassignedVariableInCatch.ts
12345678910
// @strict: true let foo; try { if (Math.random() > 0.5) { foo = 1234; } } catch { foo; }