summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug652590.js
blob: 5709411a53d14dff7302945d25738ce9882d229b (plain)
1
2
3
4
5
function f() {
    var x = undefined ? 1 : 4294967295;
    print(false || x);
}
f();