]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_borrowck/src/type_check/relate_tys.rs
Auto merge of #105363 - WaffleLapkin:thin2win_box_next_argument, r=nnethercote
[rust.git] / compiler / rustc_borrowck / src / type_check / relate_tys.rs
index 2353ccc0c0582454ab2445c6e0905931c756c39e..b2702eafd33bd8cec66eca5c29241d2ea8417acd 100644 (file)
@@ -3,7 +3,7 @@
 use rustc_infer::traits::PredicateObligations;
 use rustc_middle::mir::ConstraintCategory;
 use rustc_middle::ty::relate::TypeRelation;
-use rustc_middle::ty::{self, Const, Ty};
+use rustc_middle::ty::{self, Ty};
 use rustc_span::Span;
 use rustc_trait_selection::traits::query::Fallible;
 
@@ -140,13 +140,6 @@ fn push_outlives(
         );
     }
 
-    // We don't have to worry about the equality of consts during borrow checking
-    // as consts always have a static lifetime.
-    // FIXME(oli-obk): is this really true? We can at least have HKL and with
-    // inline consts we may have further lifetimes that may be unsound to treat as
-    // 'static.
-    fn const_equate(&mut self, _a: Const<'tcx>, _b: Const<'tcx>) {}
-
     fn normalization() -> NormalizationStrategy {
         NormalizationStrategy::Eager
     }