pub trait SccHelper<'tcx> {
// Required methods
fn tcx(&self) -> TyCtxt<'tcx>;
fn defid(&self) -> DefId;
fn blocks(&self) -> &Vec<Block<'tcx>>;
fn blocks_mut(&mut self) -> &mut Vec<Block<'tcx>>;
}pub trait SccHelper<'tcx> {
// Required methods
fn tcx(&self) -> TyCtxt<'tcx>;
fn defid(&self) -> DefId;
fn blocks(&self) -> &Vec<Block<'tcx>>;
fn blocks_mut(&mut self) -> &mut Vec<Block<'tcx>>;
}