about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-2727.rs
blob: 92287459424fd331e9c6ce521bfe3fff6cdcce39 (plain)
1
2
3
4
5
6
7
8
//@ check-pass
// Test for https://github.com/rust-lang/rust-clippy/issues/2727

pub fn f(new: fn()) {
    new();
}

fn main() {}