Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/test_data/parser/inline/ok/0130_let_stmt.rs')
| -rw-r--r-- | crates/syntax/test_data/parser/inline/ok/0130_let_stmt.rs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/crates/syntax/test_data/parser/inline/ok/0130_let_stmt.rs b/crates/syntax/test_data/parser/inline/ok/0130_let_stmt.rs index fa8ee49a23..8003999fd0 100644 --- a/crates/syntax/test_data/parser/inline/ok/0130_let_stmt.rs +++ b/crates/syntax/test_data/parser/inline/ok/0130_let_stmt.rs @@ -1,9 +1 @@ -fn foo() { - let a; - let b: i32; - let c = 92; - let d: i32 = 92; - let e: !; - let _: ! = {}; - let f = #[attr]||{}; -} +fn f() { let x: i32 = 92; } |