summaryrefslogtreecommitdiffstats
path: root/vendor/rayon/src/compile_fail/cannot_collect_filtermap_data.rs
blob: bb62ce02f540b2a63d25a12a572c41d3ae9b5f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*! ```compile_fail,E0599

use rayon::prelude::*;

// zip requires data of exact size, but filter yields only bounded
// size, so check that we cannot apply it.

let a: Vec<usize> = (0..1024).collect();
let mut v = vec![];
a.par_iter()
    .filter_map(|&x| Some(x as f32))
    .collect_into_vec(&mut v); //~ ERROR no method

``` */