diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2021-03-14 14:12:04 -0400 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2021-03-14 23:02:01 -0400 |
| commit | 18f89790dacad42d11f7fbd5d9cb09ce5dd8ff2f (patch) | |
| tree | 10c89f986acaa2d8fd60894b4f566037aec1c850 /compiler/rustc_parse/src | |
| parent | 06546d4b4071f48888a5bef476aa01a9d5e6c4e4 (diff) | |
| download | rust-18f89790dacad42d11f7fbd5d9cb09ce5dd8ff2f.tar.gz rust-18f89790dacad42d11f7fbd5d9cb09ce5dd8ff2f.zip | |
Bump recursion_limit in a few places
This is needed to get rustdoc to succeed on `dist-x86_64-linux-alt`
Diffstat (limited to 'compiler/rustc_parse/src')
| -rw-r--r-- | compiler/rustc_parse/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_parse/src/lib.rs b/compiler/rustc_parse/src/lib.rs index cea4de72df5..001b52b56fc 100644 --- a/compiler/rustc_parse/src/lib.rs +++ b/compiler/rustc_parse/src/lib.rs @@ -6,6 +6,7 @@ #![feature(or_patterns)] #![feature(box_syntax)] #![feature(box_patterns)] +#![recursion_limit = "256"] use rustc_ast as ast; use rustc_ast::token::{self, Nonterminal}; |
