deepsourcestatus / test-repository

Useless assignment VET-V0002
Bug risk
Major
8 months ago8 months old
self-assignment of a to a
84
85func swap(a, b int) (int, int) {
86	temp := a
87	a = a88	b = temp
89	return a, b
90}