mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
7 lines
183 B
Rust
7 lines
183 B
Rust
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
|
|
});
|
|
}
|