9 lines
90 B
Rust
9 lines
90 B
Rust
#![warn(clippy::let_unit_value)]
|
|
|
|
fn f() {}
|
|
static FN: fn() = f;
|
|
|
|
fn main() {
|
|
FN();
|
|
}
|