rust/tests/ui/crashes/ice-2727.rs
2020-10-09 12:45:29 +02:00

7 lines
116 B
Rust

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