| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-09-26 | use `try_structurally_resolve_type` for method receiver | lcnr | -2/+2 | |
| We'll still error due to the `opt_bad_ty` of `method_autoderef_steps`. This slightly worsens the span of `infer_var.method()` which is now the same as for `Box::new(infer_var).method()`. Unlike `structurally_resolve_type`, `probe_op` does not check whether the infcx is already tainted, so this results in 2 previously not emitted errors. | ||||
| 2025-07-10 | Make `Diag::multipart_suggestions` always verbose | Esteban Küber | -3/+6 | |
| 2025-06-11 | stabilize gai | Boxy | -18/+6 | |
| 2025-06-06 | Make obligation cause code suggestions verbose | Esteban Küber | -4/+5 | |
| ``` error[E0277]: `()` is not a future --> $DIR/unnecessary-await.rs:28:10 | LL | e!().await; | ^^^^^ `()` is not a future | = help: the trait `Future` is not implemented for `()` = note: () must be a future or must implement `IntoFuture` to be awaited = note: required for `()` to implement `IntoFuture` help: remove the `.await` | LL - e!().await; LL + e!(); | ``` ``` error[E0277]: the trait bound `String: Copy` is not satisfied --> $DIR/const-fn-in-vec.rs:1:47 | LL | static _MAYBE_STRINGS: [Option<String>; 5] = [None; 5]; | ^^^^ the trait `Copy` is not implemented for `String` | = note: required for `Option<String>` to implement `Copy` = note: the `Copy` trait is required because this value will be copied for each element of the array help: create an inline `const` block | LL | static _MAYBE_STRINGS: [Option<String>; 5] = [const { None }; 5]; | +++++++ + ``` | ||||
| 2025-05-26 | Add test | Boxy | -0/+25 | |
| 2025-05-22 | Reviews | Boxy | -2/+2 | |
| 2025-05-21 | Check for element being `const` before resolving repeat count | Boxy | -32/+18 | |
| 2025-05-21 | GAI logic on stable too | Boxy | -7/+120 | |
| 2025-05-21 | Properly test whether repeat expr checks are pre/post integer fallback | Boxy | -82/+74 | |
| 2025-05-21 | Don't allow repeat expr count inference side effects to propagate | Boxy | -2/+77 | |
| 2025-04-30 | compiletest: Make diagnostic kind mandatory on line annotations | Vadim Petrochenkov | -17/+19 | |
| 2025-02-27 | Bless | Boxy | -1/+172 | |
| 2025-02-27 | Add inference constraining Copy impl test | Boxy | -0/+21 | |
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -18/+27 | |
| ``` 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-09 | Always take the `Ok` path in `lit_to_const` and produce error constants instead | Oli Scherer | -6/+6 | |
| 2024-12-21 | Suggest Semicolon in Incorrect Repeat Expressions | Veera | -14/+14 | |
| 2024-12-21 | Add Tests | Veera | -0/+194 | |
| 2024-07-11 | Account for `let foo = expr`; to suggest `const foo: Ty = expr;` | Esteban Küber | -2/+2 | |
| 2024-07-11 | Use verbose style when suggesting changing `const` with `let` | Esteban Küber | -2/+5 | |
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -2/+2 | |
| 2024-01-24 | Remove extra # from url | est31 | -1/+1 | |
| 2024-01-21 | Suggest arry::from_fn for array initialization | yukang | -0/+2 | |
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -1/+1 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-04-12 | Tweak output for 'add line' suggestion | Esteban Küber | -1/+2 | |
| 2023-01-30 | Modify primary span label for E0308 | Esteban Küber | -2/+2 | |
| The previous output was unintuitive to users. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+161 | |
