We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 038a71a + 8b56d42 commit 65a213cCopy full SHA for 65a213c
crates/hir-ty/src/traits.rs
@@ -27,7 +27,7 @@ pub(crate) struct ChalkContext<'a> {
27
28
fn create_chalk_solver() -> chalk_recursive::RecursiveSolver<Interner> {
29
let overflow_depth =
30
- var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(300);
+ var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(500);
31
let max_size = var("CHALK_SOLVER_MAX_SIZE").ok().and_then(|s| s.parse().ok()).unwrap_or(150);
32
chalk_recursive::RecursiveSolver::new(overflow_depth, max_size, Some(Cache::new()))
33
}
0 commit comments