summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-11230.rs
blob: 5761882273e002dff0c40925f3ebc0ccb1d7e1e4 (plain)
1
2
3
4
5
6
/// Test for https://github.com/rust-lang/rust-clippy/issues/11230

fn main() {
    const A: &[for<'a> fn(&'a ())] = &[];
    for v in A.iter() {}
}