summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBug578044.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/basic/testBug578044.js')
-rw-r--r--js/src/jit-test/tests/basic/testBug578044.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/testBug578044.js b/js/src/jit-test/tests/basic/testBug578044.js
new file mode 100644
index 000000000..c5b811dc9
--- /dev/null
+++ b/js/src/jit-test/tests/basic/testBug578044.js
@@ -0,0 +1,13 @@
+this.watch("x", Object.create)
+try {
+ (function() {
+ this.__defineGetter__("x",
+ function() {
+ return this
+ })
+ })()
+} catch(e) {}
+Object.defineProperty(x, "x", ({
+ set: Uint16Array
+}))
+