DEBSOURCES
Skip Quicknav
sources / node-typescript / 4.9.5%2Bds1-2 / tests / cases / compiler / withStatementNestedScope.ts
12345678
var x = 1; with (x) { function f(a: number) { return 1; } // should be any var r = f(1); }