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

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