| Age | Commit message (Expand) | Author | Lines |
| 2022-04-04 | Mention implementers of unsatisfied trait | Esteban Kuber | -4/+13 |
| 2022-04-04 | diagnostics: use correct span for const generics | Michael Howell | -2/+2 |
| 2022-04-02 | Fix late-bound ICE in unsized return suggestion | Michael Goulet | -28/+51 |
| 2022-03-30 | Restore `impl Future<Output = Type>` to async blocks | Michael Goulet | -4/+4 |
| 2022-03-30 | Auto merge of #95466 - Dylan-DPC:rollup-g7ddr8y, r=Dylan-DPC | bors | -1/+1 |
| 2022-03-30 | Spellchecking some comments | Yuri Astrakhan | -1/+1 |
| 2022-03-28 | Also use the RPIT back compat hack in trait projection | Oli Scherer | -35/+5 |
| 2022-03-28 | Show that the behaviour is the same for RPIT and TAIT | Oli Scherer | -0/+230 |
| 2022-03-28 | Add a test showing that a similar example compiles | Oli Scherer | -0/+20 |
| 2022-03-28 | Fix mixing lazy TAIT and RPIT in their defining scopes | Oli Scherer | -0/+28 |
| 2022-03-28 | Add regression test | Oli Scherer | -0/+60 |
| 2022-03-28 | Add another regression test | Oli Scherer | -0/+27 |
| 2022-03-28 | Test that TAIT and RPIT are in sync | Oli Scherer | -2/+31 |
| 2022-03-28 | Add regression tests | Oli Scherer | -0/+494 |
| 2022-03-28 | Remove opaque type obligation and just register opaque types as they are enco... | Oli Scherer | -16/+48 |
| 2022-03-28 | Revert to inference variable based hidden type computation for RPIT | Oli Scherer | -134/+287 |
| 2022-03-28 | Special case the situation where the previous span is the same as the new one | Oli Scherer | -6/+3 |
| 2022-03-28 | Have the spans of TAIT type conflict errors point to the actual site instead ... | Oli Scherer | -7/+7 |
| 2022-03-28 | Normalize all projections in mir validation again | Oli Scherer | -0/+29 |
| 2022-03-28 | Don't bind hidden types when searching for matching impls | Oli Scherer | -39/+73 |
| 2022-03-28 | Revert "Auto merge of #93893 - oli-obk:sad_revert, r=oli-obk" | Oli Scherer | -504/+848 |
| 2022-03-27 | Rollup merge of #95364 - GuillaumeGomez:long-error-explanation-e0667, r=Dylan... | Dylan DPC | -1/+3 |
| 2022-03-27 | Update ui test output | Guillaume Gomez | -1/+3 |
| 2022-03-27 | Rollup merge of #93469 - compiler-errors:issue-93450, r=estebank | Dylan DPC | -18/+3 |
| 2022-03-22 | remove [async output] from impl Future | Michael Goulet | -4/+4 |
| 2022-03-16 | resolve the conflict in compiler/rustc_session/src/parse.rs | codehorseman | -1/+1 |
| 2022-03-07 | diagnostics: only talk about `Cargo.toml` if running under Cargo | Michael Howell | -1/+1 |
| 2022-03-03 | Cleanup feature gates. | Camille GILLOT | -3/+1 |
| 2022-02-26 | Provide extra note if synthetic type args are specified | Gary Guo | -0/+1 |
| 2022-02-24 | Remove in-band lifetimes | Michael Goulet | -16/+12 |
| 2022-02-17 | skip pointing out ambuguous impls in alloc/std crates too | Michael Goulet | -18/+3 |
| 2022-02-17 | fix impl trait message, bless tests | Michael Goulet | -220/+110 |
| 2022-02-17 | Add more information to `impl Trait` deny error | Michael Goulet | -108/+218 |
| 2022-02-12 | Update chalk tests | Matthew Jasper | -6/+4 |
| 2022-02-11 | Revert "Auto merge of #92007 - oli-obk:lazy_tait2, r=nikomatsakis" | Oli Scherer | -748/+510 |
| 2022-02-11 | Revert "Auto merge of #92306 - Aaron1011:opaque-type-op, r=oli-obk" | Oli Scherer | -20/+8 |
| 2022-02-11 | Revert "Fix regression from lazy opaque types" | Oli Scherer | -94/+2 |
| 2022-02-09 | Auto merge of #92306 - Aaron1011:opaque-type-op, r=oli-obk | bors | -8/+20 |
| 2022-02-08 | Improve opaque type higher-ranked region error message under NLL | Aaron Hill | -8/+20 |
| 2022-02-08 | Fix regression from lazy opaque types | Oli Scherer | -2/+94 |
| 2022-02-07 | Print opaque types from type aliases via their path | Oli Scherer | -7/+7 |
| 2022-02-02 | Only prevent TAITs from defining each other, RPIT and async are fine, they on... | Oli Scherer | -20/+2 |
| 2022-02-02 | Prevent two opaque types in their defining scopes from being defined via the ... | Oli Scherer | -13/+132 |
| 2022-02-02 | Ensure we error in case of non-higher-kinded lifetimes | Oli Scherer | -1/+48 |
| 2022-02-02 | Avoid an ICE in the presence of HKL | Oli Scherer | -0/+15 |
| 2022-02-02 | Make the error for opaque types that have no hidden types a bit informative | Oli Scherer | -6/+12 |
| 2022-02-02 | Hide further opaque type errors if items that could constrain the opaque type... | Oli Scherer | -20/+6 |
| 2022-02-02 | Add some tests to show what happens when you compare two opaque types that ar... | Oli Scherer | -0/+64 |
| 2022-02-02 | Test recursive TAIT declarations | Oli Scherer | -0/+80 |
| 2022-02-02 | Eagerly merge hidden types. | Oli Scherer | -33/+55 |