rust/tests/ui/iterators/vec-on-unimplemented.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
180 B
Rust
Raw Normal View History

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