| Age | Commit message (Expand) | Author | Lines |
| 2022-06-23 | Rollup merge of #98390 - GuillaumeGomez:keyword-rustdoc-json, r=notriddle | Michael Goulet | -0/+21 |
| 2022-06-23 | Rollup merge of #98365 - jyn514:improve-obligation-errors-review-comments, r=... | Michael Goulet | -8/+8 |
| 2022-06-23 | Rollup merge of #98353 - beetrees:builtin-macros-cfg-diag, r=davidtwco | Michael Goulet | -1/+10 |
| 2022-06-23 | Rollup merge of #98310 - jsha:defer-source-sidebar, r=GuillaumeGomez | Michael Goulet | -6/+6 |
| 2022-06-23 | Rollup merge of #98283 - TaKO8Ki:point-at-private-fields-in-struct-literal, r... | Michael Goulet | -6/+45 |
| 2022-06-23 | Rollup merge of #98269 - compiler-errors:provide-more-segment-res, r=petroche... | Michael Goulet | -115/+115 |
| 2022-06-23 | Rollup merge of #98259 - jyn514:improve-obligation-errors, r=estebank | Michael Goulet | -60/+296 |
| 2022-06-23 | Rollup merge of #98184 - compiler-errors:elided-lifetime-in-impl-nll, r=cjgillot | Michael Goulet | -0/+69 |
| 2022-06-23 | add regression tests found in crater | Niko Matsakis | -1/+69 |
| 2022-06-23 | normalize if-eq bounds before testing | Niko Matsakis | -0/+37 |
| 2022-06-23 | Suggest defining variable as mutable on `&mut _` type mismatch in pats | Maybe Waffle | -1/+122 |
| 2022-06-23 | Add/update GUI tests for help pocket menu | Guillaume Gomez | -15/+74 |
| 2022-06-22 | Perform coherence checking per impl. | Camille GILLOT | -148/+138 |
| 2022-06-22 | Rewrite dead-code pass to avoid fetching HIR. | Camille GILLOT | -30/+53 |
| 2022-06-22 | Uniform spans in dead code lint. | Camille GILLOT | -70/+66 |
| 2022-06-22 | Slightly tweak invalid atomic ordering lint messages. | Mara Bos | -180/+180 |
| 2022-06-22 | Remove (transitive) reliance on sorting by DefId in pretty-printer | Aaron Hill | -16/+16 |
| 2022-06-22 | Add test for keywords in rustdoc JSON output | Guillaume Gomez | -0/+21 |
| 2022-06-22 | use `-Cstrip=debuginfo` with ui tests to reduce disk space usage | klensy | -4/+18 |
| 2022-06-22 | Auto merge of #98279 - cjgillot:all-fresh-nofn, r=petrochenkov | bors | -36/+46 |
| 2022-06-22 | Fix debug info test | Robin Raymond | -5/+2 |
| 2022-06-22 | Rollup merge of #98005 - compiler-errors:impossible-bounds, r=Mark-Simulacrum | Yuki Okushi | -18/+151 |
| 2022-06-22 | Rollup merge of #97818 - compiler-errors:rpit-error-spanned, r=oli-obk | Yuki Okushi | -0/+27 |
| 2022-06-22 | add "was" to pluralize macro and use it | Takayuki Maeda | -3/+3 |
| 2022-06-22 | point to type param definition when not finding variant, method and assoc type | Takayuki Maeda | -110/+147 |
| 2022-06-22 | stop pointing at definitions of missing fields | Takayuki Maeda | -24/+4 |
| 2022-06-22 | Auto merge of #97853 - TaKO8Ki:emit-only-one-note-per-unused-struct-field, r=... | bors | -244/+403 |
| 2022-06-21 | Add some tests for impossible bounds | Michael Goulet | -18/+151 |
| 2022-06-21 | Point at return expression for RPIT-related error | Michael Goulet | -0/+27 |
| 2022-06-21 | Improve suggestion for calling closure on type mismatch | Michael Goulet | -11/+66 |
| 2022-06-21 | Address review comments from #98259 | Joshua Nelson | -8/+8 |
| 2022-06-22 | Rollup merge of #98336 - fmease:remove-faulty-doc-hidden-lint, r=GuillaumeGomez | Yuki Okushi | -177/+0 |
| 2022-06-22 | Rollup merge of #98334 - JohnTitor:issue-73727, r=compiler-errors | Yuki Okushi | -7/+15 |
| 2022-06-22 | Rollup merge of #98199 - c410-f3r:z-errors, r=petrochenkov | Yuki Okushi | -0/+0 |
| 2022-06-22 | Rollup merge of #97867 - lcnr:lub-binder, r=oli-obk | Yuki Okushi | -0/+181 |
| 2022-06-21 | Perform wf checking per module. | Camille GILLOT | -3/+3 |
| 2022-06-21 | Only keep a single well-formed query. | Camille GILLOT | -262/+146 |
| 2022-06-21 | Always create parameters for functions-like types. | Camille GILLOT | -36/+46 |
| 2022-06-21 | Add UI test for `cfg!(foo, bar)` | beetrees | -1/+10 |
| 2022-06-21 | [RFC 2011] Optimize non-consuming operators | Caio | -38/+179 |
| 2022-06-21 | Auto merge of #98335 - JohnTitor:rollup-j2zudxv, r=JohnTitor | bors | -6/+69 |
| 2022-06-21 | Move some tests to more reasonable directories | Caio | -0/+0 |
| 2022-06-21 | Remove `#[doc(hidden)]` logic from `unused_attributes` lint | León Orell Valerian Liehr | -177/+0 |
| 2022-06-21 | Rollup merge of #98329 - oli-obk:fast_path_ice, r=cjgillot | Yuki Okushi | -0/+27 |
| 2022-06-21 | Rollup merge of #98124 - jsha:defer-crates, r=GuillaumeGomez | Yuki Okushi | -5/+5 |
| 2022-06-21 | Rollup merge of #98022 - compiler-errors:erroneous-borrowck-span, r=oli-obk | Yuki Okushi | -1/+37 |
| 2022-06-21 | Auto merge of #95576 - DrMeepster:box_erasure, r=oli-obk | bors | -70/+102 |
| 2022-06-21 | Add a full regression test for #73727 | Yuki Okushi | -7/+15 |
| 2022-06-21 | Avoid an ICE and instead let the compiler report a useful error | Oli Scherer | -0/+27 |
| 2022-06-20 | Provide a segment res in more cases | Michael Goulet | -115/+115 |