| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-08-06 | Allow function argument mismatch suggestion to be multiline | Sasha Pourcelot | -6/+10 | |
| 2025-06-23 | compiletest: Improve diagnostics for line annotation mismatches | Vadim Petrochenkov | -2/+2 | |
| 2025-06-22 | Implement DesugaringKind::FormatLiteral | mejrs | -3/+1 | |
| 2025-04-19 | Cleaned up 4 tests in `tests/ui/issues` | Spencer | -9/+36 | |
| 2025-04-08 | UI tests: add missing diagnostic kinds where possible | Vadim Petrochenkov | -4/+4 | |
| 2025-02-21 | More sophisticated span trimming | Michael Goulet | -27/+18 | |
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -106/+163 | |
| ``` 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-02-06 | Label mismatched parameters at the def site for foreign functions. | Jason Newcomb | -1/+1 | |
| 2025-02-05 | When displaying a parameter mismatch error, only highlight the mismatched ↵ | Jason Newcomb | -126/+74 | |
| parameters when showing the definition. | ||||
| 2024-10-20 | Added more scenarios where commas need to be removed | Lin Yihai | -4/+51 | |
| 2024-07-22 | Revert suggestion verbosity change | Esteban Küber | -6/+3 | |
| 2024-07-22 | Change suggestion message wording | Esteban Küber | -1/+1 | |
| 2024-07-22 | Use verbose suggestion for "wrong # of generics" | Esteban Küber | -3/+6 | |
| 2024-07-14 | Use ordinal number in argument error | long-long-float | -83/+83 | |
| Fix error message Fix tests Format | ||||
| 2024-07-05 | Use verbose style for argument removal suggestion | Esteban Küber | -115/+164 | |
| 2024-07-03 | Fix incorrect suggestion for extra argument with a type error | yukang | -0/+145 | |
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -2/+2 | |
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -11/+11 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-08-30 | Test and note unsafe ctor to fn ptr coercion | Michael Goulet | -1/+0 | |
| Also remove a note that I don't consider to be very useful in context. | ||||
| 2023-08-26 | More accurately point at arguments | Esteban Küber | -4/+2 | |
| 2023-08-01 | add more tests for argument removal with wacky spans | Lukas Markeffsky | -12/+48 | |
| 2023-08-01 | don't remove args for function calls coming from macro expansions | Lukas Markeffsky | -12/+1 | |
| 2023-08-01 | introduce `Span::find_ancestor_inside_same_ctxt` | Lukas Markeffsky | -3/+7 | |
| and use it for function argument diagnostics | ||||
| 2023-07-30 | add macro test cases to extra arguments test | Lukas Markeffsky | -21/+108 | |
| 2023-06-18 | sort the errors from arguments checking so that suggestions are handled properly | yukang | -0/+39 | |
| 2023-05-08 | Tweak borrow suggestion | Michael Goulet | -1/+1 | |
| 2023-04-11 | Auto merge of #109850 - MU001999:master, r=estebank | bors | -0/+60 | |
| Emits non-overlapping suggestions for arguments with wrong types Fixes #109831 | ||||
| 2023-04-02 | Make each idx is used once | Mu42 | -4/+4 | |
| 2023-04-02 | Do not repeat idx | Mu42 | -0/+60 | |
| 2023-03-30 | Don't leave a comma at the start of argument list when removing arguments | Maybe Waffle | -12/+34 | |
| 2023-03-30 | Add a test for issue 109396 | Maybe Waffle | -0/+116 | |
| 2023-02-23 | diagnostics: remove inconsistent English article "this" from E0107 | Michael Howell | -1/+1 | |
| Consider `tests/ui/const-generics/generic_const_exprs/issue-102768.stderr`, the error message where it gives additional notes about where the associated type is defined, and how the dead code lint doesn't have an article, like in `tests/ui/lint/dead-code/issue-85255.stderr`. They don't have articles, so it seems unnecessary to have one here. | ||||
| 2023-02-22 | diagnostics: update test cases to refer to assoc fn with `self` as method | Michael Howell | -1/+1 | |
| 2023-02-21 | Fix overlapping spans in removing extra arguments | clubby789 | -15/+62 | |
| 2023-02-14 | Re-add replacement logic and add comment explaining it | Esteban Küber | -5/+8 | |
| 2023-02-14 | Show the effects of weird code commented out | Esteban Küber | -8/+5 | |
| 2023-02-14 | Make removal suggestion not verbose | Esteban Küber | -104/+75 | |
| 2023-02-14 | rebase and review comments | Esteban Küber | -32/+32 | |
| 2023-02-14 | Avoid trailing commas | Esteban Küber | -4/+4 | |
| 2023-02-14 | More accurate spans for arg removal suggestion | Esteban Küber | -42/+63 | |
| 2023-01-30 | Mention fn coercion rules (needs to be expanded) | Esteban Küber | -0/+1 | |
| 2023-01-30 | Modify primary span label for E0308 | Esteban Küber | -33/+33 | |
| The previous output was unintuitive to users. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+2275 | |
