aboutsummaryrefslogtreecommitdiff
path: root/test/input/reduce/output.js
blob: 25ea7fec3594a2e778f179feec756b984c265d15 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var b = 0;

function f0() {
    var expr2 = (0 - 1 - .1 - .1).toString();
    for (var key2 in expr2) {
        --b;
    }
}

var a_1 = f0();

console.log(b);
// output: -19
// minify: -4
// options: {"compress":{"unsafe_math":true},"mangle":false}