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-29.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs
wasmtime-28.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs
wasmtime-27.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs
wasmtime-26.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs
wasmtime-25.0.2 ./ext/cargo-vendor/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs
wasmtime-25.0.1 ./ext/cargo-vendor/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs
wasmtime-25.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs
wasmtime-24.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/compile_fail/no_send_par_iter.rs
wasmtime-23.0.2 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-22.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-21.0.1 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-20.0.2 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-20.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-18.0.3 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-17.0.1 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-17.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-16.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-15.0.1 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-15.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs
wasmtime-14.0.4 ./ext/cargo-vendor/rayon-1.8.0/src/compile_fail/no_send_par_iter.rs