summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug655810.js
blob: e31d56234c34bd0cfdbe47430d00555338d4dbd9 (plain)
1
2
3
4
5
6
function f(arr) {
    var x = arr[0];
    if (typeof x) {};
    Math.abs(x);
}
f([1.2]);