Sha256: b241446439c659f35060df12ba91590ea4267f373ddc688e4ffc203321db24b3

Contents?: true

Size: 864 Bytes

Versions: 38

Compression:

Stored size: 864 Bytes

Contents

// Check that `!Send` types fail early.

/** ```compile_fail,E0277

use rayon::prelude::*;
use std::ptr::null;

#[derive(Copy, Clone)]
struct NoSend(*const ());

unsafe impl Sync for NoSend {}

let x = Some(NoSend(null()));

x.par_iter()
    .map(|&x| x) //~ ERROR
    .count(); //~ ERROR

``` */
mod map {}

/** ```compile_fail,E0277

use rayon::prelude::*;
use std::ptr::null;

#[derive(Copy, Clone)]
struct NoSend(*const ());

unsafe impl Sync for NoSend {}

let x = Some(NoSend(null()));

x.par_iter()
    .filter_map(|&x| Some(x)) //~ ERROR
    .count(); //~ ERROR

``` */
mod filter_map {}

/** ```compile_fail,E0277

use rayon::prelude::*;
use std::ptr::null;

#[derive(Copy, Clone)]
struct NoSend(*const ());

unsafe impl Sync for NoSend {}

let x = Some(NoSend(null()));

x.par_iter()
    .cloned() //~ ERROR
    .count(); //~ ERROR

``` */
mod cloned {}

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/no_send_par_iter.rs
wasmtime-14.0.1 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-14.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-13.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-12.0.1 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-12.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-11.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-10.0.1 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-10.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-9.0.4 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-9.0.1 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-8.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-7.0.0 ./ext/cargo-vendor/rayon-1.7.0/src/compile_fail/no_send_par_iter.rs
wasmtime-6.0.1 ./ext/cargo-vendor/rayon-1.6.1/src/compile_fail/no_send_par_iter.rs
wasmtime-6.0.0 ./ext/cargo-vendor/rayon-1.6.1/src/compile_fail/no_send_par_iter.rs
wasmtime-5.0.0 ./ext/cargo-vendor/rayon-1.6.1/src/compile_fail/no_send_par_iter.rs
wasmtime-0.4.1 ./ext/cargo-vendor/rayon-1.6.0/src/compile_fail/no_send_par_iter.rs
wasmtime-0.4.0 ./ext/cargo-vendor/rayon-1.6.0/src/compile_fail/no_send_par_iter.rs