Skip to content

Commit 65a213c

Browse files
committed
Auto merge of #12281 - lnicola:increase-overflow-depth, r=lnicola
Increase defalt chalk overflow depth to match max solver size TBC: - #12279: ok above 480 - ~~#12182~~ - ~~#12095~~ - #11902: ok above 350 - ~~#11668~~ - #11370: ok above 450 - #9754: probably ok above 250 (!), and the code in cause and branch are gone Closes #12279 Closes #11902 Closes #11370 Closes #9754
2 parents 038a71a + 8b56d42 commit 65a213c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/hir-ty/src/traits.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub(crate) struct ChalkContext<'a> {
2727

2828
fn create_chalk_solver() -> chalk_recursive::RecursiveSolver<Interner> {
2929
let overflow_depth =
30-
var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(300);
30+
var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(500);
3131
let max_size = var("CHALK_SOLVER_MAX_SIZE").ok().and_then(|s| s.parse().ok()).unwrap_or(150);
3232
chalk_recursive::RecursiveSolver::new(overflow_depth, max_size, Some(Cache::new()))
3333
}

0 commit comments

Comments
 (0)