abrasion/third_party/cargo/vendor/rayon-1.5.0/tests/issue671.rs

17 lines
317 B
Rust

#![type_length_limit = "500000"]
use rayon::prelude::*;
#[test]
fn type_length_limit() {
let _ = Vec::<Result<(), ()>>::new()
.into_par_iter()
.map(|x| x)
.map(|x| x)
.map(|x| x)
.map(|x| x)
.map(|x| x)
.map(|x| x)
.collect::<Result<(), ()>>();
}