diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2020-11-27 15:46:19 -0500 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2020-11-27 15:47:58 -0500 |
| commit | 92bfa05b07090be1b3bf32af0c8947a0f0b387e8 (patch) | |
| tree | 91512964b3812cec7dbd63acf9b428fad49c04bc | |
| parent | 772292fa5180516f34fdcbe704c16203f7f38202 (diff) | |
| download | rust-92bfa05b07090be1b3bf32af0c8947a0f0b387e8.tar.gz rust-92bfa05b07090be1b3bf32af0c8947a0f0b387e8.zip | |
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).
| -rw-r--r-- | compiler/rustc_ast_passes/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_ast_passes/src/lib.rs b/compiler/rustc_ast_passes/src/lib.rs index bfe30441980..7487421e709 100644 --- a/compiler/rustc_ast_passes/src/lib.rs +++ b/compiler/rustc_ast_passes/src/lib.rs @@ -6,6 +6,7 @@ #![feature(bindings_after_at)] #![feature(iter_is_partitioned)] +#![recursion_limit = "256"] pub mod ast_validation; pub mod feature_gate; |
