| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-04-08 | UI tests: add missing diagnostic kinds where possible | Vadim Petrochenkov | -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-07-18 | More accurate span for anonymous argument suggestion | Esteban Küber | -4/+4 | |
| Use smaller span for suggesting adding `_:` ahead of a type: ``` error: expected one of `(`, `...`, `..=`, `..`, `::`, `:`, `{`, or `|`, found `)` --> $DIR/anon-params-denied-2018.rs:12:47 | LL | fn foo_with_qualified_path(<Bar as T>::Baz); | ^ expected one of 8 possible tokens | = note: anonymous parameters are removed in the 2018 edition (see RFC 1685) help: explicitly ignore the parameter name | LL | fn foo_with_qualified_path(_: <Bar as T>::Baz); | ++ ``` | ||||
| 2024-02-18 | macro_rules: Preserve all metavariable spans in a global side table | Vadim Petrochenkov | -25/+2 | |
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -10/+10 | |
| 2024-02-07 | Update tests | r0cky | -3/+5 | |
| 2024-01-05 | macro_rules: Add more tests for using `tt` in addition to `ident` | Vadim Petrochenkov | -4/+37 | |
| Generally, `tt` and `ident` should behave identically, modulo the latter accepting only a subset of token trees. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+271 | |
