about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Hill <aa1ronham@gmail.com>2020-11-27 15:46:19 -0500
committerAaron Hill <aa1ronham@gmail.com>2020-11-27 15:47:58 -0500
commit92bfa05b07090be1b3bf32af0c8947a0f0b387e8 (patch)
tree91512964b3812cec7dbd63acf9b428fad49c04bc
parent772292fa5180516f34fdcbe704c16203f7f38202 (diff)
downloadrust-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.rs1
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;