Sha256: 3588fcf72e804ea867ea525b6dfa7a3d45fe14e28088e849fa9ddb029acc8a7a

Contents?: true

Size: 330 Bytes

Versions: 38

Compression:

Stored size: 330 Bytes

Contents

/*! ```compile_fail,E0277

use rayon::prelude::*;

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

let mut a: Vec<usize> = (0..1024).rev().collect();
let b: Vec<usize> = (0..1024).collect();

a.par_iter()
    .zip(b.par_iter().filter(|&&x| x > 3)); //~ ERROR

``` */

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
wasmtime-14.0.3 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-14.0.1 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-14.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-13.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-12.0.1 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-12.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-11.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-10.0.1 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-10.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-9.0.4 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-9.0.1 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-8.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-7.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-6.0.1 ./ext/cargo-vendor/rayon-1.6.1/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-6.0.0 ./ext/cargo-vendor/rayon-1.6.1/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-5.0.0 ./ext/cargo-vendor/rayon-1.6.1/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-0.4.1 ./ext/cargo-vendor/rayon-1.6.0/src/compile_fail/cannot_zip_filtered_data.rs
wasmtime-0.4.0 ./ext/cargo-vendor/rayon-1.6.0/src/compile_fail/cannot_zip_filtered_data.rs