blob: d832c2860332d0b1b25e062de26437e5ef699210 [file] [log] [blame]
// run-pass
/// Test for https://github.com/rust-lang/rust-clippy/issues/2727
pub fn f(new: fn()) {
new();
}
fn main() {}