1
0
mirror of https://github.com/golang/go synced 2024-10-02 00:28:33 -06:00
go/internal/lsp/testdata/rename/testy/testy.go.golden

21 lines
279 B
Plaintext
Raw Normal View History

-- bar-rename --
testy.go:
package testy
type tt int //@rename("tt", "testyType")
func a() {
bar := 42 //@rename("foo", "bar")
}
-- testyType-rename --
testy.go:
package testy
type testyType int //@rename("tt", "testyType")
func a() {
foo := 42 //@rename("foo", "bar")
}