Bump recursion_limit in rustc_ast_passes

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).
This commit is contained in:
Aaron Hill 2020-11-27 15:46:19 -05:00
parent 772292fa51
commit 92bfa05b07
No known key found for this signature in database
GPG Key ID: B4087E510E98B164
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@
#![feature(bindings_after_at)]
#![feature(iter_is_partitioned)]
#![recursion_limit = "256"]
pub mod ast_validation;
pub mod feature_gate;