We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
debug!
1 parent 1dba4b0 commit 08c0e84Copy full SHA for 08c0e84
src/librustc_traits/evaluate_obligation.rs
@@ -17,10 +17,12 @@ fn evaluate_obligation<'tcx>(
17
tcx: TyCtxt<'tcx>,
18
canonical_goal: CanonicalPredicateGoal<'tcx>,
19
) -> Result<EvaluationResult, OverflowError> {
20
+ debug!("evaluate_obligation(canonical_goal={:#?})", canonical_goal);
21
tcx.infer_ctxt().enter_with_canonical(
22
DUMMY_SP,
23
&canonical_goal,
24
|ref infcx, goal, _canonical_inference_vars| {
25
+ debug!("evaluate_obligation: goal={:#?}", goal);
26
let ParamEnvAnd {
27
param_env,
28
value: predicate,
0 commit comments