Skip to content

Commit 4dbc7e3

Browse files
committed
Auto merge of rust-lang#113309 - chenyukang:yukang-fix-89640-space, r=Nilstrieb
Detect extra space in keyword for better hint Fixes rust-lang#89640 r? `@Nilstrieb` I met the same issue, then found out this old issue :)
2 parents cd68ead + 799d291 commit 4dbc7e3

File tree

5 files changed

+32
-0
lines changed

5 files changed

+32
-0
lines changed

compiler/rustc_parse/src/parser/diagnostics.rs

+16
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,22 @@ impl<'a> Parser<'a> {
605605
}
606606
}
607607

608+
if let TokenKind::Ident(prev, _) = &self.prev_token.kind
609+
&& let TokenKind::Ident(cur, _) = &self.token.kind
610+
{
611+
let concat = Symbol::intern(&format!("{}{}", prev, cur));
612+
let ident = Ident::new(concat, DUMMY_SP);
613+
if ident.is_used_keyword() || ident.is_reserved() || ident.is_raw_guess() {
614+
let span = self.prev_token.span.to(self.token.span);
615+
err.span_suggestion_verbose(
616+
span,
617+
format!("consider removing the space to spell keyword `{}`", concat),
618+
concat,
619+
Applicability::MachineApplicable,
620+
);
621+
}
622+
}
623+
608624
// `pub` may be used for an item or `pub(crate)`
609625
if self.prev_token.is_ident_named(sym::public)
610626
&& (self.token.can_begin_item()
104 Bytes
Binary file not shown.
103 Bytes
Binary file not shown.

tests/ui/suggestions/issue-89640.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
le t x: i32 = 3; //~ ERROR expected one of
3+
}
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `t`
2+
--> $DIR/issue-89640.rs:2:8
3+
|
4+
LL | le t x: i32 = 3;
5+
| ^ expected one of 8 possible tokens
6+
|
7+
help: consider removing the space to spell keyword `let`
8+
|
9+
LL | let x: i32 = 3;
10+
| ~~~
11+
12+
error: aborting due to previous error
13+

0 commit comments

Comments
 (0)