### Code ```Rust fn main() { vec![].into_iter().map({ |x| let y = x; y }) } ``` ### Current output ```Shell error[E0658]: `let` expressions in this position are unstable ``` ### Desired output ```Shell Something related to `map({ |x|` is a syntax error and should be `map(|x| {` ``` ### Rationale and extra context N/A ### Other cases _No response_ ### Anything else? _No response_