| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -473/+0 | |
| 2022-08-18 | Reword "Required because of the requirements on the impl of ..." | Andy Wang | -6/+6 | |
| 2022-06-03 | Fully stabilize NLL | Jack Huey | -10/+4 | |
| 2022-04-28 | Update the diagnostic message to match the new span | Oli Scherer | -6/+6 | |
| 2022-04-28 | Check that repeat expression elements are Copy (ignoring lifetimes) in ↵ | Oli Scherer | -30/+57 | |
| typeck and that they are Copy (with proper lifetime checks) in borrowck | ||||
| 2022-04-04 | Mention implementers of unsatisfied trait | Esteban Kuber | -12/+6 | |
| 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-22 | `#![feature(inline_const)]` is no longer incomplete | Gary Guo | -1/+1 | |
| 2021-03-09 | improve `const fn` `RepeatVec` diagnostics | Henry Boisdequin | -2/+2 | |
| 2021-02-14 | update message | Henry Boisdequin | -0/+1 | |
| 2021-02-03 | added a suggestion to create a `const` item if the `fn` in the array repeat ↵ | Henry Boisdequin | -0/+1 | |
| expression is a `const fn` | ||||
| 2021-01-30 | Remove const_in_array_rep_expr | kadmin | -0/+456 | |
