about summary refs log tree commit diff
path: root/tests/ui/coverage-attr/bad-syntax.stderr
AgeCommit message (Collapse)AuthorLines
2025-07-16Port `#[coverage]` to the new attribute systemSasha Pourcelot-60/+74
2025-02-21More sophisticated span trimmingMichael Goulet-12/+8
2025-02-10Show diff suggestion format on verbose replacementEsteban Küber-32/+48
``` 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-23Revert "Auto merge of #130766 - clarfonthey:stable-coverage-attribute, ↵Zalathar-13/+13
r=wesleywiser" This reverts commit 1d35638dc38dbfbf1cc2a9823135dfcf3c650169, reversing changes made to f23a80a4c2fbca593b64e70f5970368824b4c5e9.
2024-12-18Add reference annotations for the `coverage` attributeEric Huss-13/+13
2024-12-16Stabilize #[coverage] attributeltdk-13/+13
2024-07-12Make parse error suggestions verbose and fix spansEsteban Küber-4/+7
Go over all structured parser suggestions and make them verbose style. When suggesting to add or remove delimiters, turn them into multiple suggestion parts.
2024-06-24coverage: Bless coverage attribute testsZalathar-38/+99
2024-06-18Add a more thorough test of incorrect/unusal `#[coverage(..)]` syntaxZalathar-0/+78
This test reflects the current implementation behaviour, which is not necessarily the desired behaviour.