1 2 3 4 5 6 7 8 9 10
function foo(): never { throw new Error("foo"); } try { foo(); } catch (e) { console.log(e); throw e; }