TODO(≥go1.18): Define a generic function that boxes a value on the heap.
(n int)
| 106 | |
| 107 | // TODO(≥go1.18): Define a generic function that boxes a value on the heap. |
| 108 | func newInt(n int) *int { return &n } |
| 109 | |
| 110 | type Stringer string |
| 111 |
no outgoing calls
no test coverage detected