Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: b066807397fd55553f4910ede74839e319b661fd authored by Junio C Hamano on 22 July 2020, 16:30:01 UTC
Git 2.28-rc2
Tip revision: b066807
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