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