(&self, other: &Self)
| 268 | |
| 269 | impl<C: BlockContext> PartialEq for BasicBlock<C> { |
| 270 | fn eq(&self, other: &Self) -> bool { |
| 271 | self.function() == other.function() |
| 272 | && self.index() == other.index() |
| 273 | && self.block_type() == other.block_type() |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | impl<C: BlockContext> Eq for BasicBlock<C> {} |
nothing calls this directly
no test coverage detected