| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-08-19 | bless tests with new lint messages | Karol Zwolak | -1/+1 | |
| 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; | ``` | ||||
| 2024-12-08 | Adjust `atomic-from-mut-not-available.rs` | 许杰友 Jieyou Xu (Joe) | -3/+53 | |
| - Introduce two revisions: one for 32-bit x86 vs one for 64-bit x86_64 and compare & contrast the errors. - Document the test intention and note its limitations. | ||||
| 2024-12-08 | Move `atomic-from-mut-not-available.rs` to `tests/ui/stdlib-unit-tests/` | 许杰友 Jieyou Xu (Joe) | -0/+7 | |
| This test exercises the combined effect of the `cfg(target_has_atomic_equal_alignment = "...")` implementation in the compiler as well as the usage of said `cfg(target_has_atomic_equal_alignment)` in `core`. | ||||
| 2024-04-28 | Move various stdlib tests to library/std/tests | Ryan Lowe | -312/+0 | |
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -11/+11 | |
| 2024-02-07 | Update tests | r0cky | -1/+13 | |
| 2024-01-02 | Adjust compiler tests for unused_tuple_struct_fields -> dead_code | Jake Goulding | -1/+1 | |
| 2023-12-10 | remove redundant imports | surechen | -3/+1 | |
| detects redundant imports that can be eliminated. for #117772 : In order to facilitate review and modification, split the checking code and removing redundant imports code into two PR. | ||||
| 2023-08-28 | Revert "Suggest using `Arc` on `!Send`/`!Sync` types" | David Tolnay | -3/+0 | |
| This reverts commit 9de1a472b68ed85f396b2e2cc79c3ef17584d6e1. | ||||
| 2023-08-09 | Suggest using `Arc` on `!Send`/`!Sync` types | Esteban Kuber | -0/+3 | |
| 2023-06-20 | update failing ui tests | Ibraheem Ahmed | -16/+1 | |
| 2023-01-19 | Add `rustc_on_unimplemented` on `Sync` for cell types | Nilstrieb | -0/+2 | |
| Suggest using a lock instead. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+549 | |
