blob: d56250693a9b1b9de7971606abf8bd3c3041548a [file] [log] [blame]
-- Goodbye-rename --
b.go:
package b
var c int //@rename("int", "uint")
func _() {
a := 1 //@rename("a", "error")
a = 2
_ = a
}
var (
// Hello there.
// Foo does the thing.
Foo int //@rename("Foo", "Bob")
)
/*
Goodbye description
*/
func Goodbye() {} //@rename("Hello", "Goodbye")
c.go:
package c
import "golang.org/lsptests/rename/b"
func _() {
b.Goodbye() //@rename("Hello", "Goodbye")
}