Run 'cargo codegen' to update tests

This commit is contained in:
Arthur Baars 2025-05-30 21:04:19 +00:00
parent d3a7d1c447
commit bd71e6c2e9
2 changed files with 5 additions and 0 deletions

View file

@ -83,6 +83,10 @@ mod ok {
#[test]
fn cast_expr() { run_and_expect_no_errors("test_data/parser/inline/ok/cast_expr.rs"); }
#[test]
fn closure_binder() {
run_and_expect_no_errors("test_data/parser/inline/ok/closure_binder.rs");
}
#[test]
fn closure_body_underscore_assignment() {
run_and_expect_no_errors(
"test_data/parser/inline/ok/closure_body_underscore_assignment.rs",

View file

@ -0,0 +1 @@
fn main() { for<'a> || (); }