mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
10 lines
272 B
Text
10 lines
272 B
Text
error: this let-binding has unit value
|
|
--> $DIR/ice-8821.rs:7:5
|
|
|
|
|
LL | let _: () = FN();
|
|
| ^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `FN();`
|
|
|
|
|
= note: `-D clippy::let-unit-value` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|