forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#83639 - osa1:issue83638, r=estebank
Replace tabs in err messages before rendering This is done in other call sites, but was missing in one place. Fixes rust-lang#83638
- Loading branch information
Showing
3 changed files
with
15 additions
and
1 deletion.
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,6 @@ | ||
// check-fail | ||
// ignore-tidy-tab | ||
|
||
fn main() { | ||
""" " //~ ERROR | ||
} |
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,8 @@ | ||
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `" "` | ||
--> $DIR/issue-83639.rs:5:7 | ||
| | ||
LL | """ " | ||
| ^^^^^^ expected one of `.`, `;`, `?`, `}`, or an operator | ||
|
||
error: aborting due to previous error | ||
|