| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-06-18 | Bless/update tests. | Mara Bos | -5/+5 | |
| 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; | ``` | ||||
| 2025-01-06 | `best_blame_constraint`: don't filter constraints by sup SCC | dianne | -8/+8 | |
| The SCCs of the region graph are not a reliable heuristic to use for blaming an interesting constraint for diagnostics. For region errors, if the outlived region is `'static`, or the involved types are invariant in their lifetiems, there will be cycles in the constraint graph containing both the target region and the most interesting constraints to blame. To get better diagnostics in these cases, this commit removes that heuristic. | ||||
| 2024-11-22 | Stabilize the 2024 edition | Eric Huss | -26/+26 | |
| 2024-11-09 | Dont suggest use<APIT> | Michael Goulet | -12/+46 | |
| 2024-10-31 | Try to point out when edition 2024 lifetime capture rules cause borrowck issues | Michael Goulet | -0/+284 | |
