Repository URL to install this package:
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()