blob: a25bb46f9ff7bfac565d5eb1bf7116a3fe6a2d40 [file] [log] [blame]
#![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`
}