Combination of exported/unexported value/pointer receiver methods.
(p *Partial)
| 68 | |
| 69 | // Combination of exported/unexported value/pointer receiver methods. |
| 70 | func (t T) F1(p *Partial) {} |
| 71 | func (t T) f2(p *Partial) {} |
| 72 | func (t *T) F3(p *Partial) {} |
| 73 | func (t *T) f4(p *Partial) {} |
nothing calls this directly
no outgoing calls
no test coverage detected