DEBSOURCES
Skip Quicknav
sources / node-typescript / 4.9.5%2Bds1-2 / tests / cases / compiler / reachabilityCheckWithEmptyDefault.ts
12345678
declare function print(s: string): void; function foo(x: any) { switch(x) { case 1: return; default: } print('1'); }