()
| 83 | |
| 84 | impl<'tcx> AutoDropCollector<'tcx> { |
| 85 | fn new() -> Self { |
| 86 | Self { |
| 87 | drop_locations: Vec::new(), |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | fn finish(self) -> Vec<(Location, Place<'tcx>)> { |
| 92 | self.drop_locations |
nothing calls this directly
no outgoing calls
no test coverage detected