| 255 | struct Hashable : Comparable { |
| 256 | explicit Hashable(int value) : Comparable{value} {}; |
| 257 | size_t hash() const { return static_cast<size_t>(value); } |
| 258 | }; |
| 259 | |
| 260 | struct Hashable2 : Hashable { |
nothing calls this directly
no outgoing calls
no test coverage detected