Skip to content

Commit 16d6920

Browse files
committed
Fix
1 parent 0e76967 commit 16d6920

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/librustc_lint/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
#![feature(quote)]
3131
#![feature(rustc_diagnostic_macros)]
3232

33+
#![recursion_limit="256"]
34+
3335
#[macro_use]
3436
extern crate syntax;
3537
#[macro_use]

src/libsyntax_ext/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#![feature(quote)]
2525
#![feature(rustc_diagnostic_macros)]
2626

27+
#![recursion_limit="256"]
28+
2729
extern crate fmt_macros;
2830
#[macro_use]
2931
extern crate syntax;

0 commit comments

Comments
 (0)