about summary refs log tree commit diff
path: root/tests/ui/parser/issues/issue-68629.stderr
AgeCommit message (Collapse)AuthorLines
2025-04-03compiletest: Require `//~` annotations even if `error-pattern` is specifiedVadim Petrochenkov-5/+5
2024-07-18Be more accurate about calculating `display_col` from a `BytePos`Esteban Küber-7/+7
No longer track "zero-width" chars in `SourceMap`, read directly from the line when calculating the `display_col` of a `BytePos`. Move `char_width` to `rustc_span` and use it from the emitter. This change allows the following to properly align in terminals (depending on the font, the replaced control codepoints are rendered as 1 or 2 width, on my terminal they are rendered as 1, on VSCode text they are rendered as 2): ``` error: this file contains an unclosed delimiter --> $DIR/issue-68629.rs:5:17 | LL | ␜␟ts␀![{i | -- unclosed delimiter | | | unclosed delimiter LL | ␀␀ fn rݻoa>rݻm | ^ ```
2024-07-18Replace ASCII control chars with Unicode Control PicturesEsteban Küber-0/+0
``` error: bare CR not allowed in doc-comment --> $DIR/lex-bare-cr-string-literal-doc-comment.rs:3:32 | LL | /// doc comment with bare CR: '␍' | ^ ```
2023-02-28remove duplicated diagnostic for unclosed delimiteryukang-0/+0
2023-02-28Exit when there are unmatched delims to avoid noisy diagnosticsyukang-0/+0
2023-01-12Emit a single error for contiguous sequences of Unicode homoglyphsclubby789-0/+0
2023-01-11Move /src/test to /testsAlbert Larsan-0/+0