Default severity: warning
Calling the predeclared append function with only a slice argument returns
that same slice unchanged. Assign or return the slice directly instead.
Bad
destination = append(source)Good
destination = sourceDetect append calls that add no elements.
Default severity: warning
Calling the predeclared append function with only a slice argument returns
that same slice unchanged. Assign or return the slice directly instead.
destination = append(source)destination = source