(n)
| 39 | |
| 40 | // Add leads to different special values than sub/mul/div. |
| 41 | function add_minus_zero(n) { |
| 42 | return n + -0.0; |
| 43 | } |
| 44 | for (let [special_value, expected_output] of [[undefined, NaN], |
| 45 | ["abcd", "abcd0"], |
| 46 | ["0", "00"], |
no outgoing calls
no test coverage detected