aboutsummaryrefslogtreecommitdiff
path: root/test/input/reduce/diff_error.reduced.js
blob: a76e3d949f9c4303dfc50658a0795019feab7cd2 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// (beautified)
(function f(a) {
    do {
        console.log(f.length);
    } while (console.log(f += 0));
})();
// output: 1
// function(){}0
// 
// minify: 0
// function(){}0
// 
// options: {
//   "compress": {
//     "keep_fargs": false,
//     "unsafe": true
//   },
//   "mangle": false
// }