func go/types.NewInterfaceType

7 uses

	go/types (current package)
		builtins.go#L866: 		ptyp := check.newTypeParam(tpar, NewInterfaceType(nil, []Type{NewUnion(terms)})) // assigns type to tpar as a side-effect
		interface.go#L44: 	return NewInterfaceType(methods, tnames)
		interface.go#L53: func NewInterfaceType(methods []*Func, embeddeds []Type) *Interface {
		typeparam.go#L127: 		ityp = NewInterfaceType(nil, []Type{bound})

	golang.org/x/tools/internal/gcimporter
		newInterface11.go#L13: 	return types.NewInterfaceType(methods, embeddeds)
		ureader_yes.go#L431: 	iface := types.NewInterfaceType(methods, embeddeds)
		ureader_yes.go#L581: 					newIface := types.NewInterfaceType(methods, embeds)