go/types.Named.Underlying (method, view implemented interface methods)

8 uses

	go/types (current package)
		lookup.go#L57: 		if p, _ := t.Underlying().(*Pointer); p != nil {
		named.go#L226: func (t *Named) Underlying() Type { return t.resolve(nil).underlying }
		named.go#L251: 	u := n0.Underlying()
		named.go#L293: 		u = n.Underlying()

	golang.org/x/exp/apidiff
		compatibility.go#L263: 	d.checkCompatible(otn, old.Underlying(), new.Underlying())
		compatibility.go#L266: 	if reflect.TypeOf(old.Underlying()) != reflect.TypeOf(new.Underlying()) {
		compatibility.go#L270: 	if _, ok := old.Underlying().(*types.Interface); ok {

	golang.org/x/tools/internal/gcimporter
		bexport.go#L337: 		p.typ(t.Underlying())