title: NoNewVar layout: article

NoNewVar occurs when a short variable declaration (':=') does not declare
new variables.

Example:
 func f() {
 	x := 1
 	x := 2
 }