forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#112518 - chenyukang:yukang-fix-112458, r=da…
…vidtwco Detect actual span for getting unexpected token from parsing macros Fixes rust-lang#112458
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fn main() { | ||
println!("{}", x.); //~ ERROR unexpected token: `)` | ||
//~^ ERROR cannot find value `x` in this scope | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
error: unexpected token: `)` | ||
--> $DIR/issue-112458.rs:2:22 | ||
| | ||
LL | println!("{}", x.); | ||
| ^ | ||
|
||
error[E0425]: cannot find value `x` in this scope | ||
--> $DIR/issue-112458.rs:2:20 | ||
| | ||
LL | println!("{}", x.); | ||
| ^ not found in this scope | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0425`. |