We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caa11de commit 30313c0Copy full SHA for 30313c0
src/librustc_mir/borrow_check/nll/explain_borrow/find_use.rs
@@ -19,10 +19,10 @@ use rustc::ty::{RegionVid, TyCtxt};
19
use rustc_data_structures::fx::FxHashSet;
20
use util::liveness::{self, DefUse, LivenessMode};
21
22
-crate fn find<'cx, 'gcx: 'tcx, 'tcx: 'cx>(
23
- mir: &'cx Mir<'tcx>,
24
- regioncx: &'cx Rc<RegionInferenceContext<'tcx>>,
25
- tcx: TyCtxt<'cx, 'gcx, 'tcx>,
+crate fn find<'tcx>(
+ mir: &Mir<'tcx>,
+ regioncx: &Rc<RegionInferenceContext<'tcx>>,
+ tcx: TyCtxt<'_, '_, 'tcx>,
26
region_vid: RegionVid,
27
start_point: Location,
28
) -> Option<Cause> {
0 commit comments