Files
jerryscript/tests/jerry/nonstrict-with.exp
T
e.gavrin e4122522ae tests
2014-07-04 14:20:06 +04:00

11 lines
111 B
Plaintext

with ({}) {
}
with ({x : 42}) {
var foo = function () {
"use strict";
return x;
};
}
with ({}) {
}