about summary refs log tree commit diff
path: root/tests/ui/lint/wide_pointer_comparisons.stderr
AgeCommit message (Collapse)AuthorLines
2025-07-31Consider operator's span when computing binop expr spanMichael Goulet-8/+10
2025-05-25Improve `ambiguous_wide_pointer_comparisons` lint compare diagnosticsUrgau-25/+125
2025-02-14Use underline suggestions for purely 'additive' replacementsMichael Goulet-3/+2
2025-02-10Show diff suggestion format on verbose replacementEsteban Küber-72/+108
``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ```
2024-12-21Properly record metavar spans for other expansions other than TTMichael Goulet-1/+1
2024-08-01Do not underline suggestions for code that is already thereEsteban Küber-19/+19
When a suggestion part is for already present code, do not highlight it. If after that there are no highlights left, do not show the suggestion at all. Fix clippy lint suggestion incorrectly treated as `span_help`.
2024-03-29Add support for NonNull in ambiguous_wide_ptr_comparisionsUrgau-51/+84
2024-03-29Add detection of [Partial]Ord methods to the ambiguous wide ptr cmp lintUrgau-53/+185
2024-02-18macro_rules: Preserve all metavariable spans in a global side tableVadim Petrochenkov-7/+7
2024-01-05macro_rules: Add more tests for using `tt` in addition to `ident`Vadim Petrochenkov-3/+14
Generally, `tt` and `ident` should behave identically, modulo the latter accepting only a subset of token trees.
2023-12-06Add warn-by-default lint against ambiguous wide pointer comparisonsUrgau-0/+452