summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1001090-3.js
blob: 3739c06b6f42d394a1fef91b75e3dc50c7eb657c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
var output = [];
function g(s) {
    L = s.length;
    for (var i = 0; i < L; i++) {
        a = s.charAt()
    }
}
function h(f, inputs) {
    results = [];
    for (var j = 0; j < 99; ++j) {
        for (var k = 0; k < 99; ++k) {
            try {
                results.push(f())
            } catch (e) {}
        }
    }
    output.push(g(JSON.stringify(results)))
}
m = (function(x, y) {});
h(m, [])
try {
    output.push(x);
    let x = s()
} catch (e) {}

assertEq(output.length, 1);
assertEq(output[0], undefined);