| 602 | func (*myWriter) Write(p []byte) (int, error) { return 0, nil } |
| 603 | |
| 604 | type myReadWriter struct{} |
| 605 | |
| 606 | func (myReadWriter) Read(p []byte) (int, error) { return 0, nil } |
| 607 | func (*myReadWriter) Write(p []byte) (int, error) { return 0, nil } |
nothing calls this directly
no outgoing calls
no test coverage detected