TypeScript/tests/baselines/reference/withStatementNestedScope.js
2014-07-12 17:30:19 -07:00

19 lines
283 B
JavaScript

//// [withStatementNestedScope.ts]
var x = 1;
with (x) {
function f(a: number) {
return 1;
}
// should be any
var r = f(1);
}
//// [withStatementNestedScope.js]
var x = 1;
with (x) {
function f(a) {
return 1;
}
var r = f(1);
}