Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 6ff7f460394745395f3eec1e414ad2300c6a402f authored by Johannes Schindelin on 12 February 2021, 14:50:05 UTC
Git 2.27.1
Tip revision: 6ff7f46
golang-complex-function
type Test struct {
	a Type
}

func (t *Test) RIGHT(a Type) (Type, error) {
	t.a = a
	return ChangeMe, nil
}
back to top