Default severity: error
append returns the updated slice header. Discarding that result loses any new
length or reallocated backing array. The check reports only function-local
slices whose backing storage has not escaped or been observably aliased.
Bad
values := make([]int, 0); values = append(values, item) // values is never read againGood
values = append(values, item)