We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d3259 commit ab10ac7Copy full SHA for ab10ac7
crates/hir_ty/src/traits.rs
@@ -26,7 +26,7 @@ pub(crate) struct ChalkContext<'a> {
26
27
fn create_chalk_solver() -> chalk_recursive::RecursiveSolver<Interner> {
28
let overflow_depth =
29
- var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(100);
+ var("CHALK_OVERFLOW_DEPTH").ok().and_then(|s| s.parse().ok()).unwrap_or(300);
30
let max_size = var("CHALK_SOLVER_MAX_SIZE").ok().and_then(|s| s.parse().ok()).unwrap_or(30);
31
chalk_recursive::RecursiveSolver::new(overflow_depth, max_size, Some(Cache::new()))
32
}
0 commit comments