Skip to content

Commit a91b67e

Browse files
committed
Run 'cargo codegen' to update tests
1 parent 7f7079f commit a91b67e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

crates/parser/test_data/generated/runner.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ mod ok {
8383
#[test]
8484
fn cast_expr() { run_and_expect_no_errors("test_data/parser/inline/ok/cast_expr.rs"); }
8585
#[test]
86+
fn closure_binder() {
87+
run_and_expect_no_errors("test_data/parser/inline/ok/closure_binder.rs");
88+
}
89+
#[test]
8690
fn closure_body_underscore_assignment() {
8791
run_and_expect_no_errors(
8892
"test_data/parser/inline/ok/closure_body_underscore_assignment.rs",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fn main() { for<'a> || (); }

0 commit comments

Comments
 (0)