]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/large_stack_arrays.rs
Auto merge of #84373 - cjgillot:resolve-span, r=michaelwoerister,petrochenkov
[rust.git] / clippy_lints / src / large_stack_arrays.rs
index 9a448ab125686cf2ce405a7ca9c1a84416b800c7..bbb6c1f902ce077e7fcfc6f168021f71fb356cde 100644 (file)
@@ -1,22 +1,21 @@
+use clippy_utils::diagnostics::span_lint_and_help;
+use clippy_utils::source::snippet;
+use if_chain::if_chain;
 use rustc_hir::{Expr, ExprKind};
 use rustc_lint::{LateContext, LateLintPass};
 use rustc_middle::mir::interpret::ConstValue;
+use rustc_middle::ty::layout::LayoutOf;
 use rustc_middle::ty::{self, ConstKind};
 use rustc_session::{declare_tool_lint, impl_lint_pass};
 
-use if_chain::if_chain;
-
-use crate::rustc_target::abi::LayoutOf;
-use crate::utils::{snippet, span_lint_and_help};
-
 declare_clippy_lint! {
-    /// **What it does:** Checks for local arrays that may be too large.
-    ///
-    /// **Why is this bad?** Large local arrays may cause stack overflow.
+    /// ### What it does
+    /// Checks for local arrays that may be too large.
     ///
-    /// **Known problems:** None.
+    /// ### Why is this bad?
+    /// Large local arrays may cause stack overflow.
     ///
-    /// **Example:**
+    /// ### Example
     /// ```rust,ignore
     /// let a = [0u32; 1_000_000];
     /// ```