go/ast.FuncType.Pos (method, view implemented interface methods)

5 uses

	go/ast (current package)
		ast.go#L500: func (x *FuncLit) Pos() token.Pos  { return x.Type.Pos() }
		ast.go#L520: func (x *FuncType) Pos() token.Pos {
		ast.go#L1011: func (d *FuncDecl) Pos() token.Pos { return d.Type.Pos() }

	go/parser
		resolver.go#L278: 		r.openScope(n.Pos())

	go/types
		signature.go#L147: 		scopePos := ftyp.Pos()