mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
11 lines
350 B
Text
11 lines
350 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`
|
|
= help: to override `-D warnings` add `#[allow(clippy::let_unit_value)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|