rust-clippy/tests/ui/crashes/ice-11230.rs
Michael Goulet 661e91be57 Add test
2023-11-12 12:14:41 -08:00

6 lines
149 B
Rust

/// Test for https://github.com/rust-lang/rust-clippy/issues/11230
fn main() {
const A: &[for<'a> fn(&'a ())] = &[];
for v in A.iter() {}
}