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

14 lines
176 B
TypeScript

//// [withStatements.ts]
var x = 12;
with (x) {
name = 'twelve'
id = 12
}
//// [withStatements.js]
var x = 12;
with (x) {
name = 'twelve';
id = 12;
}