Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/parser/test_data/generated/runner.rs')
| -rw-r--r-- | crates/parser/test_data/generated/runner.rs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/crates/parser/test_data/generated/runner.rs b/crates/parser/test_data/generated/runner.rs index 6dfb78b128..7aaf270a77 100644 --- a/crates/parser/test_data/generated/runner.rs +++ b/crates/parser/test_data/generated/runner.rs @@ -195,6 +195,8 @@ mod ok { run_and_expect_no_errors("test_data/parser/inline/ok/default_unsafe_item.rs"); } #[test] + fn deref_pat() { run_and_expect_no_errors("test_data/parser/inline/ok/deref_pat.rs"); } + #[test] fn destructuring_assignment_struct_rest_pattern() { run_and_expect_no_errors( "test_data/parser/inline/ok/destructuring_assignment_struct_rest_pattern.rs", @@ -584,6 +586,8 @@ mod ok { run_and_expect_no_errors("test_data/parser/inline/ok/reference_type.rs"); } #[test] + fn return_attr() { run_and_expect_no_errors("test_data/parser/inline/ok/return_attr.rs"); } + #[test] fn return_expr() { run_and_expect_no_errors("test_data/parser/inline/ok/return_expr.rs"); } #[test] fn return_type_syntax_in_path() { @@ -956,8 +960,8 @@ mod err { #[test] fn top_level_let() { run_and_expect_errors("test_data/parser/inline/err/top_level_let.rs"); } #[test] - fn tuple_expr_leading_comma() { - run_and_expect_errors("test_data/parser/inline/err/tuple_expr_leading_comma.rs"); + fn tuple_expr_empty_expr() { + run_and_expect_errors("test_data/parser/inline/err/tuple_expr_empty_expr.rs"); } #[test] fn tuple_field_list_recovery() { |