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