Skip to content

Commit d528fad

Browse files
Fix stage 2
1 parent b2c18d9 commit d528fad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_middle/src/ty/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ pub struct GlobalCtxt<'tcx> {
622622
impl<'tcx> GlobalCtxt<'tcx> {
623623
/// Installs `self` in a `TyCtxt` and `ImplicitCtxt` for the duration of
624624
/// `f`.
625-
pub fn enter<'a: 'tcx, F, R>(&'a self, f: F) -> R
625+
pub fn enter<F, R>(&'tcx self, f: F) -> R
626626
where
627627
F: FnOnce(TyCtxt<'tcx>) -> R,
628628
{

0 commit comments

Comments
 (0)