Run 'cargo codegen' to update tests
This commit is contained in:
parent
d3a7d1c447
commit
bd71e6c2e9
2 changed files with 5 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
fn main() { for<'a> || (); }
|
||||
Loading…
Add table
Add a link
Reference in a new issue