rust-clippy/tests/ui/crashes/ice-8821.fixed

11 lines
206 B
Rust
Raw Normal View History

2023-07-27 11:40:22 +00:00
#![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`
2023-07-27 11:40:22 +00:00
}