QuackatronHQ / Gigarepo

A function argument is overwritten before its first use SCC-SA4009
Bug risk
Major
1 occurrence in this check
argument b is overwritten before first use
82	return strings.Join(s[:], " ")
83}
84
85func swap(a, b int) (int, int) {86	temp := a
87	a = a
88	b = temp