aboutsummaryrefslogtreecommitdiff
path: root/test/input/reduce/destructured_assign.reduced.js
blob: 887810d4e06b3065521717edc4b770ba0ddea002 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// (beautified)
var o = {};

[ o[1 + .1 + .1] ] = [];

console.log(o);
// output: { '1.2000000000000002': undefined }
// 
// minify: { '1.2': undefined }
// 
// options: {
//   "compress": {
//     "unsafe_math": true
//   },
//   "mangle": false,
//   "validate": true
// }