summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-5872.fixed
blob: c8e870c62fbfbb9a4e0a3e2a00d7f87982461629 (plain)
1
2
3
4
5
6
7
#![warn(clippy::needless_collect)]

fn main() {
    let _ = vec![1, 2, 3].into_iter().next().is_none();
    //~^ ERROR: avoid using `collect()` when not needed
    //~| NOTE: `-D clippy::needless-collect` implied by `-D warnings`
}