blob: 52813f869a40b1a70ce5df64c0ad9206ff1edfec [file] [log] [blame]
This test exercises the panic reported in golang/go#61813.
-- p.go --
package p
type P struct{}
func (P) M() {} //@rename("M", "N", MToN)
var x = []*P{{}}
-- @MToN/p.go --
package p
type P struct{}
func (P) N() {} //@rename("M", "N", MToN)
var x = []*P{{}}