We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f7079f commit a91b67eCopy full SHA for a91b67e
crates/parser/test_data/generated/runner.rs
@@ -83,6 +83,10 @@ mod ok {
83
#[test]
84
fn cast_expr() { run_and_expect_no_errors("test_data/parser/inline/ok/cast_expr.rs"); }
85
86
+ fn closure_binder() {
87
+ run_and_expect_no_errors("test_data/parser/inline/ok/closure_binder.rs");
88
+ }
89
+ #[test]
90
fn closure_body_underscore_assignment() {
91
run_and_expect_no_errors(
92
"test_data/parser/inline/ok/closure_body_underscore_assignment.rs",
crates/parser/test_data/parser/inline/ok/closure_binder.rs
@@ -0,0 +1 @@
1
+fn main() { for<'a> || (); }
0 commit comments