summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug-1707422.js
blob: fa46c697353af52b0f6ae267f800af6d68531ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
x = "a";
x += +"a";
x += +"a";
x += x;
x += x;
var s = x;
x += 0;
y = x += 0;
y += x += "a";
for (let i = 0; i < 12; ++i) {
    try {
        this();
    } catch {}
}