Auto merge of #7528 - matthiaskrgr:nedlbrw, r=Manishearth

needless_borrow: try to make lint example a bit more illustrating

changelog: none
This commit is contained in:
bors 2021-08-04 09:17:10 +00:00
commit 2dbf0c138d

View file

@ -27,11 +27,15 @@ declare_clippy_lint! {
///
/// ### Example
/// ```rust
/// fn fun(_a: &i32) {}
///
/// // Bad
/// let x: &i32 = &&&&&&5;
/// fun(&x);
///
/// // Good
/// let x: &i32 = &5;
/// fun(x);
/// ```
pub NEEDLESS_BORROW,
style,