Closed mxmauro closed 1 year ago
Hi, when you define type A = B, A becomes an alias of B.
type A = B
A
B
Instead, using type A B, B is an underlying object of A.
type A B
For the former, the generator incorrectly generates duplicated selfer methods causing the go code to be invalid.
selfer
Regards, Mauro
Hi, when you define
type A = B
,A
becomes an alias ofB
.Instead, using
type A B
,B
is an underlying object ofA
.For the former, the generator incorrectly generates duplicated
selfer
methods causing the go code to be invalid.Regards, Mauro