mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
280 B
Rust
9 lines
280 B
Rust
|
// run-rustfix
|
||
|
fn main() {
|
||
|
let _ = vec![vec![0, 1], vec![2]]
|
||
|
.into_iter()
|
||
|
.map(|y| y.iter().map(|x| x + 1).collect::<Vec<_>>())
|
||
|
//~^ ERROR cannot return value referencing function parameter `y`
|
||
|
.collect::<Vec<_>>();
|
||
|
}
|