| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-06-03 | Use non-2015 edition paths in tests that do not test for their resolution | Lukas Wirth | -4/+4 | |
| This allows for testing these tests on editions other than 2015 | ||||
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -2/+3 | |
| ``` 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; | ``` | ||||
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -3/+3 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-11-16 | recover primary span label | Esteban Küber | -1/+1 | |
| 2023-11-16 | Suggest `unwrap()` on field not found for `Result`/`Option` | Esteban Küber | -1/+6 | |
| When encountering a `Result<T, _>` or `Option<T>` where `T` has a field that's being accessed, suggest calling `.unwrap()` to get to the field. | ||||
| 2023-04-12 | Special-case item attributes in the suggestion output | Esteban Küber | -1/+0 | |
| 2023-04-12 | Tweak output for 'add line' suggestion | Esteban Küber | -1/+2 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+123 | |
