mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
6b59675449
It does not seem to be necessary
7 lines
116 B
Rust
7 lines
116 B
Rust
/// Test for https://github.com/rust-lang/rust-clippy/issues/2727
|
|
|
|
pub fn f(new: fn()) {
|
|
new();
|
|
}
|
|
|
|
fn main() {}
|