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