Skip to content

Commit e5a249c

Browse files
committed
Use #![warn(single_use_lifetimes)] in futures-async-macro
Apply #1680
1 parent 242c6d7 commit e5a249c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

futures-async-macro/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
33
#![recursion_limit = "128"]
44
#![warn(rust_2018_idioms, unreachable_pub)]
5+
// It cannot be included in the published code because this lints have false positives in the minimum required version.
6+
#![cfg_attr(test, warn(single_use_lifetimes))]
57
#![warn(clippy::all)]
68

79
extern crate proc_macro;

0 commit comments

Comments
 (0)