Skip to content

Commit

Permalink
Fix span for unicode escape suggestion.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Oct 5, 2020
1 parent f317a93 commit 35192ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions compiler/rustc_parse/src/lexer/unescape_error_reporting.rs
Expand Up @@ -181,10 +181,9 @@ pub(crate) fn emit_unescape_error(

if suggestion_len > 0 {
suggestion.push('}');
let lo = char_span.lo();
let hi = lo + BytePos(suggestion_len as u32);
let hi = char_span.lo() + BytePos(suggestion_len as u32);
diag.span_suggestion(
span.with_lo(lo).with_hi(hi),
span.with_hi(hi),
"format of unicode escape sequences uses braces",
suggestion,
Applicability::MaybeIncorrect,
Expand Down
4 changes: 1 addition & 3 deletions src/test/ui/fmt/format-string-error-2.stderr
Expand Up @@ -2,9 +2,7 @@ error: incorrect unicode escape sequence
--> $DIR/format-string-error-2.rs:77:20
|
LL | println!("\x7B}\u8 {", 1);
| ^^-
| |
| help: format of unicode escape sequences uses braces: `\u{8}`
| ^^^ help: format of unicode escape sequences uses braces: `\u{8}`

error: invalid format string: expected `'}'`, found `'a'`
--> $DIR/format-string-error-2.rs:5:5
Expand Down
6 changes: 3 additions & 3 deletions src/test/ui/parser/issue-23620-invalid-escapes.stderr
Expand Up @@ -80,9 +80,9 @@ error: incorrect unicode escape sequence
--> $DIR/issue-23620-invalid-escapes.rs:32:14
|
LL | let _ = "\u8f";
| ^^--
| |
| help: format of unicode escape sequences uses braces: `\u{8f}`
| ^^^-
| |
| help: format of unicode escape sequences uses braces: `\u{8f}`

error: aborting due to 13 previous errors

0 comments on commit 35192ff

Please sign in to comment.