We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8be00f commit 4e2ef69Copy full SHA for 4e2ef69
compiler/rustc_hir_analysis/src/outlives/implicit_infer.rs
@@ -24,7 +24,7 @@ pub(super) fn infer_predicates(
24
25
// If new predicates were added then we need to re-calculate
26
// all crates since there could be new implied predicates.
27
- 'outer: loop {
+ loop {
28
let mut predicates_added = false;
29
30
// Visit all the crates and infer predicates
@@ -90,7 +90,7 @@ pub(super) fn infer_predicates(
90
}
91
92
if !predicates_added {
93
- break 'outer;
+ break;
94
95
96
0 commit comments