blob: ae5162b84a490151856d4a901a1bd17dbfc4dbe9 [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{{}}