File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
compiler/rustc_next_trait_solver/src/solve/eval_ctxt Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ where
201
201
span : I :: Span ,
202
202
stalled_on : Option < GoalStalledOn < I > > ,
203
203
) -> Result < GoalEvaluation < I > , NoSolution > {
204
- EvalCtxt :: enter_root ( self , self . cx ( ) . recursion_limit ( ) , span, |ecx| {
204
+ EvalCtxt :: enter_root ( self , self . cx ( ) . recursion_limit ( ) * 2 , span, |ecx| {
205
205
ecx. evaluate_goal ( GoalSource :: Misc , goal, stalled_on)
206
206
} )
207
207
}
@@ -1515,7 +1515,7 @@ pub fn evaluate_root_goal_for_proof_tree_raw_provider<
1515
1515
let mut inspect = inspect:: ProofTreeBuilder :: new ( ) ;
1516
1516
let canonical_result = SearchGraph :: < D > :: evaluate_root_goal_for_proof_tree (
1517
1517
cx,
1518
- cx. recursion_limit ( ) ,
1518
+ cx. recursion_limit ( ) * 2 ,
1519
1519
canonical_goal,
1520
1520
& mut inspect,
1521
1521
) ;
You can’t perform that action at this time.
0 commit comments