Skip to content

Instantly share code, notes, and snippets.

@vlymar
Created June 3, 2022 17:49
Show Gist options
  • Save vlymar/46c9da770e4ab5ab2e094e86fba46bc9 to your computer and use it in GitHub Desktop.
Save vlymar/46c9da770e4ab5ab2e094e86fba46bc9 to your computer and use it in GitHub Desktop.
Simple repro of vscode renaming bug
package main
type doer interface {
do() // try "Rename Symbol" on me
}
type coolDoer struct{}
func (d coolDoer) do() {}
func main() {
var myDoer doer = coolDoer{}
myDoer.do()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment