Skip to content

Commit 73ce004

Browse files
committed
Increase default chalk recursive solver type limit to 100
1 parent 70e3473 commit 73ce004

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 @@ fn create_chalk_solver() -> chalk_recursive::RecursiveSolver<Interner> {
2727
let overflow_depth =
2828
var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(100);
2929
let caching_enabled = true;
30-
let max_size = var("CHALK_SOLVER_MAX_SIZE").ok().and_then(|s| s.parse().ok()).unwrap_or(30);
30+
let max_size = var("CHALK_SOLVER_MAX_SIZE").ok().and_then(|s| s.parse().ok()).unwrap_or(100);
3131
chalk_recursive::RecursiveSolver::new(overflow_depth, max_size, caching_enabled)
3232
}
3333

0 commit comments

Comments
 (0)