We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a94140f commit 4cb44a7Copy full SHA for 4cb44a7
compiler/rustc_infer/src/infer/region_constraints/mod.rs
@@ -375,7 +375,7 @@ impl<'tcx> RegionConstraintCollector<'_, 'tcx> {
375
/// Not legal during a snapshot.
376
pub fn into_infos_and_data(self) -> (VarInfos, RegionConstraintData<'tcx>) {
377
assert!(!UndoLogs::<super::UndoLog<'_>>::in_snapshot(&self.undo_log));
378
- // TODO update universes of var_infos
+ // FIXME update universes of var_infos
379
(mem::take(&mut self.storage.var_infos), mem::take(&mut self.storage.data))
380
}
381
0 commit comments