Welcome to mirror list, hosted at ThFree Co, Russian Federation.

golang-complex-function « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e057dcefed6ad2aed40c5959c471114716323420 (plain)
1
2
3
4
5
6
7
8
type Test struct {
	a Type
}

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