| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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-28 | Fix tests/ui/privacy/sysroot-private | Alisa Sireneva | -4/+4 | |
| 2025-01-14 | Mark dependencies of the standard library as private by default | Trevor Gross | -1/+1 | |
| In order to avoid diagnostics suggesting stdlib-private dependencies, make everything that is a direct dependency of any `std` crates private by default. Note that this will be overridden, if the same crate is public elsewhere in the crate graph then that overrides the private default. It may also be feasible to do this in the library crate, marking `std`'s dependencies private via Cargo. However, given that the feature is still rather unstable, doing this within the compiler seems more straightforward. Fixes: https://github.com/rust-lang/rust/issues/135232 [1] | ||||
| 2025-01-14 | Add a UI test for stdlib-private dependencies | Trevor Gross | -0/+39 | |
| Introduce a test that shows stdlib-private dependencies leaking into diagnostics. This is resolved by a later commit. | ||||
