Skip to content

Commit 33acc96

Browse files
committed
Document rustfmt on nightly-rustc
The recursion_limit attribute avoids the following error: ``` error[E0275]: overflow evaluating the requirement `std::ptr::Unique<rustc_ast::Pat>: std::marker::Send` | = help: consider adding a `#![recursion_limit="256"]` attribute to your crate (`rustfmt_nightly`) ```
1 parent 0b8a26f commit 33acc96

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#![feature(rustc_private)]
22
#![deny(rust_2018_idioms)]
33
#![warn(unreachable_pub)]
4+
#![recursion_limit = "256"]
45

56
#[macro_use]
67
extern crate derive_new;

0 commit comments

Comments
 (0)