TypeScript/tests/baselines/reference/withStatement.js
2014-08-15 15:49:09 -07:00

23 lines
394 B
JavaScript

//// [withStatement.ts]
declare var ooo:any;
with (ooo.eee.oo.ah_ah.ting.tang.walla.walla) { // error
bing = true; // no error
bang = true; // no error
function bar() {}
bar();
}
//// [withStatement.js]
with (ooo.eee.oo.ah_ah.ting.tang.walla.walla) {
bing = true; // no error
bang = true; // no error
function bar() {
}
bar();
}