summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/TypedObject/bug1100202.js
blob: 7b8609186d2bbcdeed8e0efaba1903f9c6836901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if (typeof TypedObject === "undefined")
  quit();

(function() {
    Object
})()
var {
    Object
} = TypedObject
function f() {
    Object(Symbol)
}
for (var i = 0; i < 1; i++) {
    f()
}