tvl-depot/third_party/git/t/t4018/golang-complex-function
2020-01-11 23:40:29 +00:00

8 lines
108 B
Text

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