Torben Schinke
Torben Schinke
cool, many thanks for the follow up.
ok, I'll prepare one
Just had the same problem: It looks like this happens if `&h.instance` is allocated in a Go heap span. If you just declare a local (stack) variable like `var instance...
Yes, you are right. This is a custom interpreter instance. Here is a unit test: ```go func TestYaegi(t *testing.T) { ip := interp.New(interp.Options{}) myExports := interp.Exports{} myExports["some_pkg/some_pkg"] = map[string]reflect.Value{} if...