Skip to content

Commit 1549af2

Browse files
committedDec 21, 2024·
Do not suggest foo.Bar
1 parent cbbc7be commit 1549af2

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed
 

‎compiler/rustc_parse/src/parser/stmt.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,12 @@ impl<'a> Parser<'a> {
746746
}
747747

748748
fn recover_missing_dot(&mut self, err: &mut Diag<'_>) {
749-
if !self.token.is_ident() {
749+
let Some((ident, _)) = self.token.ident() else {
750+
return;
751+
};
752+
if let Some(c) = ident.name.as_str().chars().next()
753+
&& c.is_uppercase()
754+
{
750755
return;
751756
}
752757
if self.token.is_reserved_ident() && !self.token.is_ident_named(kw::Await) {

‎tests/ui/parser/raw/raw-literal-keywords.stderr

-10
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,12 @@ error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found
99
|
1010
LL | r#struct Test;
1111
| ^^^^ expected one of 8 possible tokens
12-
|
13-
help: you might have meant to write a field access
14-
|
15-
LL | r#struct.Test;
16-
| +
1712

1813
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `Test`
1914
--> $DIR/raw-literal-keywords.rs:10:13
2015
|
2116
LL | r#union Test;
2217
| ^^^^ expected one of 8 possible tokens
23-
|
24-
help: you might have meant to write a field access
25-
|
26-
LL | r#union.Test;
27-
| +
2818

2919
error[E0425]: cannot find value `r#if` in this scope
3020
--> $DIR/raw-literal-keywords.rs:14:13

0 commit comments

Comments
 (0)
Please sign in to comment.