From 59568962aed2c4aff72360e4fbd3b9c04371dbec Mon Sep 17 00:00:00 2001 From: blyxyas Date: Sat, 11 Mar 2023 00:48:50 +0100 Subject: [PATCH] Fix code fragment --- clippy_lints/src/allow_attribute.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/clippy_lints/src/allow_attribute.rs b/clippy_lints/src/allow_attribute.rs index 2970d467f6f5..805c804119a2 100644 --- a/clippy_lints/src/allow_attribute.rs +++ b/clippy_lints/src/allow_attribute.rs @@ -21,6 +21,7 @@ declare_clippy_lint! { /// ``` /// Use instead: /// ```rust + /// # #![feature(lint_reasons)] /// #[expect(unused_mut)] /// fn foo() -> usize { /// let mut a = Vec::new();