blob: e180183e7e3874c7a7e8f6e07a645846e940a485 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0515]: cannot return value referencing function parameter `y`
--> $DIR/iterator-scope-collect-suggestion-81584.rs:6:22
|
LL | .map(|y| y.iter().map(|x| x + 1))
| -^^^^^^^^^^^^^^^^^^^^^^
| |
| returns a value referencing data owned by the current function
| `y` is borrowed here
|
= help: use `.collect()` to allocate the iterator
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0515`.
|