Equal method on pointer receiver
| 12 | StructA struct{ X string } // Equal method on value receiver |
| 13 | StructB struct{ X string } // Equal method on pointer receiver |
| 14 | StructC struct{ X string } // Equal method (with interface argument) on value receiver |
| 15 | StructD struct{ X string } // Equal method (with interface argument) on pointer receiver |
| 16 | StructE struct{ X string } // Equal method (with interface argument on value receiver) on pointer receiver |
| 17 | StructF struct{ X string } // Equal method (with interface argument on pointer receiver) on value receiver |
nothing calls this directly
no outgoing calls
no test coverage detected