https://github.com/rust-lang/rust-clippy/issues/10327
error: this match arm has an identical body to the `_` wildcard arm
--> src/edit.rs:103:9
|
103 | Expr::Verbatim(_) => None,
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try removing the arm
|
= help: or try changing either arm body
note: `_` wildcard arm here
--> src/edit.rs:106:9
|
106 | _ => None,
| ^^^^^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms
= note: `-D clippy::match-same-arms` implied by `-D clippy::pedantic`
error: non-binding `let` without a type annotation
--> src/main.rs:135:13
|
135 | let _ = writeln!(io::stdout(), "{}", theme);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
= note: `-D clippy::let-underscore-untyped` implied by `-D clippy::pedantic`
error: non-binding `let` without a type annotation
--> src/main.rs:142:13
|
142 | / let _ = writeln!(
143 | | io::stderr(),
144 | | "ERROR: cannot expand single item ({}) in ugly mode.",
145 | | item,
146 | | );
| |______________^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:155:13
|
155 | / let _ = io::stderr().write_all(
156 | | b"ERROR: cargo-expand configuration sets rustfmt=true, but \
157 | | rustfmt is not found. Install rustfmt by running `rustup \
158 | | component add rustfmt --toolchain nightly`.\n",
159 | | );
| |______________^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:181:9
|
181 | let _ = writeln!(io::stderr(), "ERROR: rustc produced no expanded output");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:215:21
|
215 | let _ = writeln!(io::stderr(), "WARNING: no such item: {}", filter);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:273:5
|
273 | let _ = writeln!(io::stderr());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:292:9
|
292 | let _ = pretty_printer.print();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:294:9
|
294 | let _ = write!(io::stdout(), "{}", content);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:447:5
|
447 | let _ = stream.set_color(ColorSpec::new().set_bold(true).set_fg(Some(Green)));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:448:5
|
448 | let _ = write!(stream, "{:>12}", "Running");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:449:5
|
449 | let _ = stream.reset();
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:450:5
|
450 | let _ = writeln!(stream, " `{}`", line);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:462:13
|
462 | let _ = write!(io::stderr(), "{}", line);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
error: non-binding `let` without a type annotation
--> src/main.rs:533:17
|
533 | / let _ = writeln!(
534 | | io::stderr(),
535 | | "WARNING: invalid color in cargo config: {}",
536 | | err
537 | | );
| |__________________^
|
= help: consider adding a type annotation or removing the `let` keyword
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped