| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -139/+0 | |
| 2022-04-04 | Mention implementers of unsatisfied trait | Esteban Kuber | -2/+1 | |
| When encountering an unsatisfied trait bound, if there are no other suggestions, mention all the types that *do* implement that trait: ``` error[E0277]: the trait bound `f32: Foo` is not satisfied --> $DIR/impl_wf.rs:22:6 | LL | impl Baz<f32> for f32 { } | ^^^^^^^^ the trait `Foo` is not implemented for `f32` | = help: the following other types implement trait `Foo`: Option<T> i32 str note: required by a bound in `Baz` --> $DIR/impl_wf.rs:18:31 | LL | trait Baz<U: ?Sized> where U: Foo { } | ^^^ required by this bound in `Baz` ``` Mention implementers of traits in `ImplObligation`s. Do not mention other `impl`s for closures, ranges and `?`. | ||||
| 2021-11-20 | Do not mention associated items when they introduce an obligation | Esteban Kuber | -5/+0 | |
| 2021-09-16 | Point at call span that introduced obligation for the arg | Esteban Kuber | -1/+3 | |
| 2021-08-22 | Fix typos “a”→“an” | Frank Steffahn | -2/+2 | |
| 2021-07-19 | Various diagnostics clean ups/tweaks | Esteban Küber | -3/+5 | |
| * Always point at macros, including derive macros * Point at non-local items that introduce a trait requirement * On private associated item, point at definition | ||||
| 2021-06-23 | Use HTTPS links where possible | Smitty | -1/+1 | |
| 2021-04-06 | Remove trailing `:` from E0119 message | Esteban Küber | -1/+1 | |
| 2021-02-09 | Organize trait test files | Bram van den Heuvel | -0/+141 | |
