1/*! ```compile_fail,E0277
23// Check that we can't use the par-iter API to access contents of a `Cell`.
45use rayon::prelude::*;
6use std::cell::Cell;
78let c = Cell::new(42_i32);
9(0_i32..1024).into_par_iter()
10 .map(|_| c.get()) //~ ERROR E0277
11 .min();
1213``` */