blob: a2000d88f87bc6785de9c3d4897fe8126d932965 [file] [log] [blame]
#![type_length_limit = "500000"]
extern crate rayon;
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<(), ()>>();
}