| 23 | use crate::detector::report::{Report, ReportContent}; |
| 24 | |
| 25 | pub struct UseAfterFreeDetector<'tcx> { |
| 26 | tcx: TyCtxt<'tcx>, |
| 27 | } |
| 28 | |
| 29 | impl<'tcx> UseAfterFreeDetector<'tcx> { |
| 30 | pub fn new(tcx: TyCtxt<'tcx>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected