mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
When a function variable is assigned from an exported method, make sure the receiver is updated from the coresponding symbol. Fixes #1182.
9 lines
94 B
Go
9 lines
94 B
Go
package d2
|
|
|
|
import "github.com/traefik/yaegi/_test/d1"
|
|
|
|
var (
|
|
X = d1.NewT("test")
|
|
F = X.F
|
|
)
|