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