Rename Constants That Use Reserved Names
Rename a constant if it uses a name of a built-in constant.
The inspection will be triggered if you try to assign a value to a constant with one of the following names: iota
, true
, or false
. GoLand will suggest you to rename such usages.
Place the cursor on a highlighted constant name, press ⌘⌥⏎ (macOS) / Ctrl+Alt+Enter (Windows/Linux), and select Rename constant. Type a new name and press ⏎ (macOS) / Enter (Windows/Linux).