Thanks to visit codestin.com Credit goes to github.com
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 32d24f9 commit 2886ca4Copy full SHA for 2886ca4
compiler/rustc_trait_selection/src/traits/query/type_op/custom.rs
@@ -100,9 +100,9 @@ where
100
} else if let Err(guar) = infcx.tcx.check_potentially_region_dependent_goals(root_def_id) {
101
Err(guar)
102
} else {
103
- Err(infcx
104
- .dcx()
105
- .delayed_bug(format!("errors selecting obligation during MIR typeck: {errors:?}")))
+ Err(infcx.dcx().delayed_bug(format!(
+ "errors selecting obligation during MIR typeck: {name} {root_def_id:?} {errors:?}"
+ )))
106
}
107
})?;
108
0 commit comments