summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1593175.js
blob: ef3d8d601f14f2d4619895941f029f4060b0ca10 (plain)
1
2
3
4
5
6
7
8
9
10
function f() {
    f;
}
f();
f();
function g() {
    typeof(f = []) + f > 2;
}
g();
g();