mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-10 20:28:44 +00:00
11 lines
206 B
Rust
11 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`
|
||
|
}
|