Skip to content

Commit cbbc7be

Browse files
committed
Account for missing . in macros to avoid incorrect suggestion
1 parent 1ce0fa9 commit cbbc7be

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

compiler/rustc_parse/src/parser/stmt.rs

+4
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,10 @@ impl<'a> Parser<'a> {
763763
} else {
764764
return;
765765
}
766+
if self.token.span == self.prev_token.span {
767+
// Account for syntax errors in proc-macros.
768+
return;
769+
}
766770
if self.look_ahead(1, |t| [token::Semi, token::Question, token::Dot].contains(&t.kind)) {
767771
err.span_suggestion_verbose(
768772
self.prev_token.span.between(self.token.span),

tests/ui/proc-macro/raw-ident.stderr

-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ LL | make_bad_struct!(S);
55
| ^^^^^^^^^^^^^^^^^^^ expected one of 8 possible tokens
66
|
77
= note: this error originates in the macro `make_bad_struct` (in Nightly builds, run with -Z macro-backtrace for more info)
8-
help: you might have meant to write a field access
9-
|
10-
LL | .;
11-
| ~
128

139
error: aborting due to 1 previous error
1410

0 commit comments

Comments
 (0)