| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-01-30 | Provide more context on derived obligation error primary label | Esteban Küber | -1/+1 | |
| Expand the primary span of E0277 when the immediate unmet bound is not what the user wrote: ``` error[E0277]: the trait bound `i32: Bar` is not satisfied --> f100.rs:6:6 | 6 | <i32 as Foo>::foo(); | ^^^ the trait `Bar` is not implemented for `i32`, which is required by `i32: Foo` | help: this trait has no implementations, consider adding one --> f100.rs:2:1 | 2 | trait Bar {} | ^^^^^^^^^ note: required for `i32` to implement `Foo` --> f100.rs:3:14 | 3 | impl<T: Bar> Foo for T {} | --- ^^^ ^ | | | unsatisfied trait bound introduced here ``` Fix #40120. | ||||
| 2023-12-07 | recurse into refs when comparing tys for diagnostics | jyn | -2/+2 | |
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -5/+5 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-10-11 | Fix range overflow checking | Nadrieril | -2/+2 | |
| 2023-09-19 | rustc_hir_analysis: add a helper to check function the signature mismatches | Eduardo Sánchez Muñoz | -16/+4 | |
| This function is now used to check `#[panic_handler]`, `start` lang item, `main`, `#[start]` and intrinsic functions. The diagnosis produced are now closer to the ones produced by trait/impl method signature mismatch. | ||||
| 2023-09-16 | impl Step for IP addresses | ltdk | -1/+1 | |
| 2023-08-14 | Implement Step for AsciiChar | ltdk | -1/+1 | |
| 2023-06-27 | Don't sort strings right after we just sorted by types | Michael Goulet | -4/+4 | |
| 2023-05-08 | Make suggest_deref_or_ref return a multipart suggestion | Michael Goulet | -74/+102 | |
| 2023-05-08 | Tweak borrow suggestion | Michael Goulet | -72/+96 | |
| 2023-04-03 | Perform match checking on THIR. | Camille GILLOT | -16/+2 | |
| 2023-03-08 | may not => cannot | Michael Goulet | -3/+3 | |
| 2023-01-30 | Modify primary span label for E0308 | Esteban Küber | -26/+26 | |
| The previous output was unintuitive to users. | ||||
| 2023-01-11 | Detect out of bounds range pattern value | Esteban Küber | -0/+39 | |
| Fix #68972. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+1254 | |
