Skip to content

Commit 8b56d42

Browse files
committed
Increase defalt chalk overflow depth to match max solver size
1 parent 01d412f commit 8b56d42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/hir-ty/src/traits.rs

+1-1
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)