summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/pic/callname-with.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/pic/callname-with.js')
-rw-r--r--js/src/jit-test/tests/pic/callname-with.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/pic/callname-with.js b/js/src/jit-test/tests/pic/callname-with.js
new file mode 100644
index 0000000000..0a988edbf3
--- /dev/null
+++ b/js/src/jit-test/tests/pic/callname-with.js
@@ -0,0 +1,15 @@
+var res;
+var x = 0;
+
+function f() {
+ x = {x: 1, f: function() { res = this.x; }};
+ with(x) {
+ g = function() {
+ eval("");
+ f();
+ }
+ g();
+ }
+}
+f();
+assertEq(res, 1);