rust/tests/ui/fn/issue-3044.rs

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

7 lines
183 B
Rust
Raw Normal View History

fn main() {
let needlesArr: Vec<char> = vec!['a', 'f'];
needlesArr.iter().fold(|x, y| {
//~^ ERROR this method takes 2 arguments but 1 argument was supplied
2014-01-27 23:29:50 +00:00
});
}