Inspectopedia 2026.2 Help

Redundant range variable shadowing

Reports redundant variable shadowing inside a for range loop, such as x := x, that was previously used to capture the loop variable for a goroutine or closure.

Starting with Go 1.22, each for range iteration uses a fresh loop variable. Because of this, the extra x := x assignment no longer changes the behavior and can be removed.

Example:

for _, x := range xs { x := x go func() { done <- x }() }

To simplify the code, use the Remove unneeded declaration quick-fix.

After the quick-fix is applied:

for _, x := range xs { go func() { done <- x }() }

Locating this inspection

By ID

Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.

GoFixForVar
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Go | Go fix

Inspection ID: GoFixForVar

Suppressing Inspection

You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:

//noinspection GoFixForVar

More detailed instructions as well as other ways and options that you have can be found in the product documentation:

Inspection Details

By default bundled with:

GoLand 2026.2, Qodana for Go 2026.2,

Last modified: 30 June 2026