| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-08-19 | bless tests with new lint messages | Karol Zwolak | -1/+1 | |
| 2025-07-15 | Recover and suggest use `;` to construct array type | xizheyin | -4/+24 | |
| Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn> | ||||
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -10/+15 | |
| ``` 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-08-01 | Fix removed `box_syntax` diagnostic if source isn't available | clubby789 | -5/+5 | |
| 2024-07-12 | Make parse error suggestions verbose and fix spans | Esteban Küber | -2/+12 | |
| 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-03-01 | Detect more cases of `=` to `:` typo | Esteban Küber | -1/+3 | |
| When a `Local` is fully parsed, but not followed by a `;`, keep the `:` span arround and mention it. If the type could continue being parsed as an expression, suggest replacing the `:` with a `=`. ``` error: expected one of `!`, `+`, `->`, `::`, `;`, or `=`, found `.` --> file.rs:2:32 | 2 | let _: std::env::temp_dir().join("foo"); | - ^ expected one of `!`, `+`, `->`, `::`, `;`, or `=` | | | while parsing the type for `_` | help: use `=` if you meant to assign ``` Fix #119665. | ||||
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -2/+2 | |
| 2024-01-17 | Move `removed-syntax` tests to their own directory | clubby789 | -0/+375 | |
