rust/crates/syntax/test_data/parser/err/0039_lambda_recovery.rs

6 lines
83 B
Rust
Raw Normal View History

fn foo() -> i32 {
[1, 2, 3].iter()
.map(|it|)
.max::<i32>();
}