rustc/tests/ui/iterators/vec-on-unimplemented.fixed
2024-06-21 09:39:33 +02:00

6 lines
192 B
Plaintext

//@ run-rustfix
fn main() {
let _ = vec![true, false].into_iter().map(|v| !v).collect::<Vec<_>>();
//~^ ERROR no method named `map` found for struct `Vec<bool>` in the current scope
}