Skip to content

Commit ab10ac7

Browse files
committed
Increase chalk overflow depth
1 parent f0d3259 commit ab10ac7

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
@@ -26,7 +26,7 @@ pub(crate) struct ChalkContext<'a> {
2626

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

0 commit comments

Comments
 (0)