Skip to content

Commit

Permalink
Bump recursion_limit in rustc_ast_passes
Browse files Browse the repository at this point in the history
When cfg(parallel_compiler) is enabled, we end up trying to prove
Send/Sync bounds for some deeply nested types (at least when rustdoc is
run).
  • Loading branch information
Aaron1011 committed Nov 27, 2020
1 parent 772292f commit 92bfa05
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions compiler/rustc_ast_passes/src/lib.rs
Expand Up @@ -6,6 +6,7 @@

#![feature(bindings_after_at)]
#![feature(iter_is_partitioned)]
#![recursion_limit = "256"]

pub mod ast_validation;
pub mod feature_gate;
Expand Down

0 comments on commit 92bfa05

Please sign in to comment.