rust/tests/ui/crashes/ice-2727.rs

10 lines
129 B
Rust

// run-pass
/// Test for https://github.com/rust-lang/rust-clippy/issues/2727
pub fn f(new: fn()) {
new();
}
fn main() {}