9 lines
108 B
Text
9 lines
108 B
Text
|
type Test struct {
|
||
|
a Type
|
||
|
}
|
||
|
|
||
|
func (t *Test) RIGHT(a Type) (Type, error) {
|
||
|
t.a = a
|
||
|
return ChangeMe, nil
|
||
|
}
|