| Age | Commit message (Expand) | Author | Lines |
| 2022-03-18 | Rollup merge of #95039 - spastorino:overlap-super-predicates, r=nikomatsakis | Matthias Krüger | -32/+58 |
| 2022-03-17 | Rollup merge of #94960 - codehorseman:master, r=oli-obk | Dylan DPC | -7/+7 |
| 2022-03-17 | Update compiler/rustc_trait_selection/src/traits/coherence.rs | Niko Matsakis | -1/+0 |
| 2022-03-17 | Use let else here | Santiago Pastorino | -26/+26 |
| 2022-03-17 | Add more commments | Santiago Pastorino | -0/+2 |
| 2022-03-17 | This test now works | Santiago Pastorino | -0/+1 |
| 2022-03-17 | Extract obligation resolution to function | Santiago Pastorino | -30/+46 |
| 2022-03-17 | Make negative coherence work when there's impl negative on super predicates | Santiago Pastorino | -8/+16 |
| 2022-03-16 | rustc_error: make ErrorReported impossible to construct | mark | -77/+92 |
| 2022-03-16 | resolve the conflict in compiler/rustc_session/src/parse.rs | codehorseman | -7/+7 |
| 2022-03-15 | Rollup merge of #94947 - Dylan-DPC:fix/typos, r=oli-obk | Matthias Krüger | -1/+1 |
| 2022-03-15 | Auto merge of #92285 - compiler-errors:dyn-proj-bounds, r=nikomatsakis | bors | -15/+13 |
| 2022-03-15 | fix typos | Dylan DPC | -1/+1 |
| 2022-03-14 | check all dyn obligations, actually | Michael Goulet | -17/+13 |
| 2022-03-14 | check Projection supertrait bounds when confirming dyn candidate | Michael Goulet | -1/+3 |
| 2022-03-14 | Rollup merge of #93977 - compiler-errors:sized-generic-metadata, r=wesleywiser | Matthias Krüger | -5/+30 |
| 2022-03-11 | Improve `AdtDef` interning. | Nicholas Nethercote | -16/+16 |
| 2022-03-10 | Rollup merge of #94440 - compiler-errors:issue-94282, r=lcnr | Matthias Krüger | -25/+63 |
| 2022-03-10 | Rollup merge of #94746 - notriddle:notriddle/method-rustc-on-unimplemented, r... | Matthias Krüger | -1/+5 |
| 2022-03-09 | suggest enabling generic_const_exprs feature if const is unevaluatable | Michael Goulet | -25/+64 |
| 2022-03-09 | diagnostics: use rustc_on_unimplemented to recommend `[].iter()` | Michael Howell | -1/+5 |
| 2022-03-09 | normalization change and rebase | b-naber | -1/+1 |
| 2022-03-09 | treat all mir::Constant values as ConstantKind::Val | b-naber | -1/+16 |
| 2022-03-08 | Rollup merge of #94689 - compiler-errors:on-unimplemented-substs, r=petrochenkov | Dylan DPC | -34/+40 |
| 2022-03-07 | Try to normalize associated types before processing obligations | Jack Huey | -10/+97 |
| 2022-03-06 | allow referencing impl substs from rustc_on_unimplemented | Michael Goulet | -23/+27 |
| 2022-03-06 | use impl substs in on_unimplemented | Michael Goulet | -11/+13 |
| 2022-03-07 | remove unnecessary `..` patterns | Takayuki Maeda | -1/+1 |
| 2022-03-03 | opaque types may also be sized | Michael Goulet | -4/+12 |
| 2022-03-03 | type parameters have unit metadata if they are sized | Michael Goulet | -5/+22 |
| 2022-03-03 | Rollup merge of #94057 - lcnr:simplify_type-uwu, r=nikomatsakis | Matthias Krüger | -13/+21 |
| 2022-03-03 | Auto merge of #84944 - lcnr:obligation-dedup, r=jackh726 | bors | -22/+0 |
| 2022-03-02 | rename ErrorReported -> ErrorGuaranteed | mark | -58/+60 |
| 2022-03-01 | 9 - Make more use of `let_chains` | Caio | -218/+176 |
| 2022-02-27 | Auto merge of #94144 - est31:let_else_trait_selection, r=cjgillot | bors | -117/+75 |
| 2022-02-26 | suggest a float literal when dividing a floating-point type by {integer} | Takayuki Maeda | -1/+36 |
| 2022-02-25 | Switch bootstrap cfgs | Mark Rousskov | -1/+1 |
| 2022-02-25 | Auto merge of #93368 - eddyb:diagbld-guarantee, r=estebank | bors | -121/+84 |
| 2022-02-24 | restore spans for issue-50480 | Michael Goulet | -1/+14 |
| 2022-02-24 | better ObligationCause for normalization errors in can_type_implement_copy | Michael Goulet | -2/+2 |
| 2022-02-23 | rustc_errors: let `DiagnosticBuilder::emit` return a "guarantee of emission". | Eduard-Mihai Burtescu | -6/+7 |
| 2022-02-23 | rustc_errors: take `self` by value in `DiagnosticBuilder::cancel`. | Eduard-Mihai Burtescu | -2/+6 |
| 2022-02-23 | Replace `&mut DiagnosticBuilder`, in signatures, with `&mut Diagnostic`. | Eduard-Mihai Burtescu | -114/+72 |
| 2022-02-21 | Auto merge of #94225 - matthiaskrgr:rollup-0728x8n, r=matthiaskrgr | bors | -18/+10 |
| 2022-02-21 | Rollup merge of #94215 - lcnr:leak-check, r=jackh726 | Matthias Krüger | -18/+10 |
| 2022-02-21 | Auto merge of #93505 - lcnr:substsref-vs-ty-list, r=michaelwoerister | bors | -19/+14 |
| 2022-02-21 | update docs for `simplify_type` | lcnr | -13/+21 |
| 2022-02-21 | obligation forest docs | lcnr | -2/+2 |
| 2022-02-21 | don't check for the leak_check twice | lcnr | -14/+6 |
| 2022-02-21 | Auto merge of #94108 - compiler-errors:just-confirmation-normalization, r=jac... | bors | -73/+30 |