Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
xgo / usr / lib / xgo / cl / _testgop / implicit-cast-2439 / in.xgo
Size: Mime:
type BasePtr struct {
}

type Base struct {
    *BasePtr
}

func Walk(p *Base) {}
func WalkPtr(p *BasePtr) {}

type T struct {
    Base
}

func f() *T {
    return {}
}

walk new(T)
walkPtr f()