aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_parser/src/grammar
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-06-07 14:41:31 +0100
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-06-07 14:41:31 +0100
commit2a6b363b44e335af5f26ac503461ef15cca82ace (patch)
treea818d95421f791dcd58e8d42e34dfe0cd6dac305 /crates/ra_parser/src/grammar
parentb81d9a4d452abd49553f78c478f486632be8f92e (diff)
parent205a8278a9da4bc1289449b916468e972fb624fc (diff)
Merge #1383
1383: fix: never type with binding r=matklad a=csmoe Closes https://github.com/rust-analyzer/rust-analyzer/issues/1326 r? @matklad Co-authored-by: csmoe <[email protected]>
Diffstat (limited to 'crates/ra_parser/src/grammar')
-rw-r--r--crates/ra_parser/src/grammar/expressions.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/ra_parser/src/grammar/expressions.rs b/crates/ra_parser/src/grammar/expressions.rs
index 99e32c4e8..795dccea1 100644
--- a/crates/ra_parser/src/grammar/expressions.rs
+++ b/crates/ra_parser/src/grammar/expressions.rs
@@ -137,12 +137,14 @@ pub(super) fn stmt(p: &mut Parser, with_semi: StmtWithSemi) {
137 m.complete(p, EXPR_STMT); 137 m.complete(p, EXPR_STMT);
138 } 138 }
139 139
140 // test let_stmt; 140 // test let_stmt
141 // fn foo() { 141 // fn foo() {
142 // let a; 142 // let a;
143 // let b: i32; 143 // let b: i32;
144 // let c = 92; 144 // let c = 92;
145 // let d: i32 = 92; 145 // let d: i32 = 92;
146 // let e: !;
147 // let _: ! = {};
146 // } 148 // }
147 fn let_stmt(p: &mut Parser, m: Marker, with_semi: StmtWithSemi) { 149 fn let_stmt(p: &mut Parser, m: Marker, with_semi: StmtWithSemi) {
148 assert!(p.at(T![let])); 150 assert!(p.at(T![let]));