(a, b)
| 415 | %NeverOptimizeFunction(side_effect); |
| 416 | |
| 417 | function unreliable(a, b) { |
| 418 | let sum = 0; |
| 419 | return a.forEach(x => sum += x, side_effect(a, b)); |
| 420 | }; |
| 421 | %PrepareFunctionForOptimization(unreliable); |
| 422 | let a = [1, 2, 3]; |
| 423 | unreliable(a, false); |
no test coverage detected