blob: 66693ba60ead3206d708b38b175d477df6f2f116 [file] [log] [blame]
-- 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")
}