about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-11755.rs
blob: d6aa1e5183d22a4e30276bd6d0c57371fe38774f (plain)
1
2
3
4
5
6
7
//@ check-pass

#![warn(clippy::unused_enumerate_index)]

fn main() {
    for () in [()].iter() {}
}