summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug617549.js
blob: a48e80f3c591d51f18c548dc52c79e0a30865c3d (plain)
1
2
3
4
5
6
7
8
9
function f() {
    var a, b, c;
    a = -c;
    b = c & 2;
    a = b;
    a = 123 * a;
}
f();