Skip to content

Commit 4efbed3

Browse files
committed
Replace TODOs with FIXMEs to allow CI to pass for now
1 parent bd6caad commit 4efbed3

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_hir_analysis/src/hir_ty_lowering

1 file changed

+2
-2
lines changed

Diff for: compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2311,7 +2311,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
23112311
assoc_ident,
23122312
span,
23132313
),
2314-
_ => panic!("handle errors here"), // TODO: do this
2314+
_ => panic!("handle errors here"), // FIXME: do this
23152315
};
23162316
let bound = match bound_result {
23172317
Ok(b) => b,
@@ -2322,7 +2322,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
23222322
let assoc_const = self
23232323
.probe_assoc_item(assoc_ident, ty::AssocKind::Const, hir_ref_id, span, trait_did)
23242324
.expect("failed to find associated const");
2325-
// TODO: don't use no_bound_vars probably
2325+
// FIXME: don't use no_bound_vars probably
23262326
let trait_ref_args = bound.no_bound_vars().unwrap().args;
23272327
self.lower_assoc_const(span, assoc_const.def_id, assoc_segment, trait_ref_args)
23282328
}

0 commit comments

Comments
 (0)