diff --git a/src/interpreter/mod.rs b/src/interpreter/mod.rs index b1b3081a2d7..59b3db7aa82 100644 --- a/src/interpreter/mod.rs +++ b/src/interpreter/mod.rs @@ -23,7 +23,7 @@ mod cast; mod vtable; mod value; -pub type MirRef<'tcx> = ::std::cell::Ref<'tcx, mir::Mir<'tcx>>; +pub type MirRef<'tcx> = Ref<'tcx, mir::Mir<'tcx>>; pub struct EvalContext<'a, 'tcx: 'a> { /// The results of the type checker, from rustc.