diff options
| author | bohan <bohan-zhang@foxmail.com> | 2023-02-04 18:55:33 +0800 |
|---|---|---|
| committer | bohan <bohan-zhang@foxmail.com> | 2023-02-09 22:28:53 +0800 |
| commit | 7615045ebd7b62751b872b5bc084be7cc9be3e00 (patch) | |
| tree | 25f405aa8e2b93667140f48b655f6713afd49f7c /compiler/rustc_errors/src | |
| parent | 7ba4e95368b2a71018cd995f5254ba3e7422954e (diff) | |
| download | rust-7615045ebd7b62751b872b5bc084be7cc9be3e00.tar.gz rust-7615045ebd7b62751b872b5bc084be7cc9be3e00.zip | |
test: snapshot for derive suggestion in diff files
Diffstat (limited to 'compiler/rustc_errors/src')
| -rw-r--r-- | compiler/rustc_errors/src/emitter.rs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/compiler/rustc_errors/src/emitter.rs b/compiler/rustc_errors/src/emitter.rs index 9768526a2f4..5f460b26488 100644 --- a/compiler/rustc_errors/src/emitter.rs +++ b/compiler/rustc_errors/src/emitter.rs @@ -1796,17 +1796,17 @@ impl EmitterWriter { // telling users to make a change but not clarifying *where*. let loc = sm.lookup_char_pos(parts[0].span.lo()); if loc.file.name != sm.span_to_filename(span) && loc.file.name.is_real() { - buffer.puts(row_num - 1, 0, "--> ", Style::LineNumber); - buffer.append( - row_num - 1, - &format!( - "{}:{}:{}", - sm.filename_for_diagnostics(&loc.file.name), - sm.doctest_offset_line(&loc.file.name, loc.line), - loc.col.0 + 1, - ), - Style::LineAndColumn, - ); + let arrow = "--> "; + buffer.puts(row_num - 1, 0, arrow, Style::LineNumber); + let filename = sm.filename_for_diagnostics(&loc.file.name); + let offset = sm.doctest_offset_line(&loc.file.name, loc.line); + let message = format!("{}:{}:{}", filename, offset, loc.col.0 + 1); + if row_num == 2 { + let col = usize::max(max_line_num_len + 1, arrow.len()); + buffer.puts(1, col, &message, Style::LineAndColumn); + } else { + buffer.append(row_num - 1, &message, Style::LineAndColumn); + } for _ in 0..max_line_num_len { buffer.prepend(row_num - 1, " ", Style::NoStyle); } |
