Skip to content

Commit fb250d7

Browse files
committed
increase recursion limit
1 parent 13240cc commit fb250d7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compiler/rustc_ast/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! # Note
44
//!
55
//! This API is completely unstable and subject to change.
6-
6+
#![recursion_limit = "256"]
77
#![doc(
88
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
99
test(attr(deny(warnings)))

compiler/rustc_middle/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
//! # Note
2222
//!
2323
//! This API is completely unstable and subject to change.
24-
24+
#![recursion_limit = "256"]
2525
// tidy-alphabetical-start
2626
#![allow(internal_features)]
2727
#![allow(rustc::diagnostic_outside_of_impl)]

compiler/rustc_parse/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! The main parser interface.
2-
2+
#![recursion_limit = "256"]
33
#![allow(internal_features)]
44
#![allow(rustc::diagnostic_outside_of_impl)]
55
#![allow(rustc::untranslatable_diagnostic)]

0 commit comments

Comments
 (0)