mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
10 lines
206 B
Rust
10 lines
206 B
Rust
#![warn(clippy::let_unit_value)]
|
|
|
|
fn f() {}
|
|
static FN: fn() = f;
|
|
|
|
fn main() {
|
|
FN();
|
|
//~^ ERROR: this let-binding has unit value
|
|
//~| NOTE: `-D clippy::let-unit-value` implied by `-D warnings`
|
|
}
|