This is an uncomparable error type, as it is a struct that supports the error interface (as opposed to a pointer type).
| 175 | // This is an uncomparable error type, as it is a struct that supports the |
| 176 | // error interface (as opposed to a pointer type). |
| 177 | type error_ struct { |
| 178 | info string |
| 179 | slice []string |
| 180 | } |
| 181 | |
| 182 | // Create a non-comparable error |
| 183 | func newNonComparableError(message string) error { |
nothing calls this directly
no outgoing calls
no test coverage detected