| Age | Commit message (Expand) | Author | Lines |
| 2020-02-15 | Rollup merge of #69180 - Aaron1011:feature/comma-struct-init, r=petrochenkov | Dylan DPC | -2/+39 |
| 2020-02-15 | Rollup merge of #69166 - JohnTitor:ice-const-enum, r=matthewjasper | Dylan DPC | -0/+15 |
| 2020-02-15 | Rollup merge of #69154 - JohnTitor:fix-macro-ices, r=petrochenkov | Dylan DPC | -0/+40 |
| 2020-02-14 | Suggest a comma if a struct initializer field fails to parse | Aaron Hill | -2/+39 |
| 2020-02-15 | Auto merge of #67681 - matthewjasper:infer-regions-in-borrowck, r=nikomatsakis | bors | -441/+641 |
| 2020-02-14 | Fix tests after rebase | Matthew Jasper | -50/+80 |
| 2020-02-14 | Fix and test nested impl Trait | Matthew Jasper | -0/+16 |
| 2020-02-14 | Update tests | Matthew Jasper | -231/+124 |
| 2020-02-14 | Handle equal regions in opaque type inference | Matthew Jasper | -0/+57 |
| 2020-02-14 | Update tests | Matthew Jasper | -157/+291 |
| 2020-02-15 | Avoid calling `fn_sig` on closures | Yuki Okushi | -0/+40 |
| 2020-02-15 | Rollup merge of #69128 - Centril:fix-69103, r=davidtwco | Yuki Okushi | -0/+44 |
| 2020-02-15 | Rollup merge of #68856 - Centril:or-pat-ref-pat, r=matthewjasper | Yuki Okushi | -13/+383 |
| 2020-02-15 | Rollup merge of #68129 - varkor:infer-binary-operand-behind-reference, r=niko... | Yuki Okushi | -0/+30 |
| 2020-02-14 | Call `is_freeze` less in unsafety-checking | Matthew Jasper | -0/+32 |
| 2020-02-14 | Check associated opaque types don't use unconstrained lifetimes | Matthew Jasper | -11/+42 |
| 2020-02-14 | Explain a test | Matthew Jasper | -2/+9 |
| 2020-02-14 | add regression test for issue #68794 | Alberto Piai | -0/+31 |
| 2020-02-14 | Check `has_typeck_tables` before calling `typeck_tables_of` | Yuki Okushi | -0/+15 |
| 2020-02-13 | Update line # in test output | Dylan MacKenzie | -1/+1 |
| 2020-02-13 | Check types of statics in MIR typeck | Matthew Jasper | -0/+81 |
| 2020-02-13 | Check `Copy` lifetimes bounds when copying from a projection | Matthew Jasper | -0/+26 |
| 2020-02-13 | Rollup merge of #68938 - Areredify:gat_lifetime_shadowing, r=estebank | Dylan DPC | -4/+21 |
| 2020-02-13 | parser: misc small item related improvements & cleanups. | Mazdak Farrokhzad | -99/+102 |
| 2020-02-13 | parser: introduce `parse_item_kind` as central `ItemInfo` logic. | Mazdak Farrokhzad | -5/+12 |
| 2020-02-13 | parser: unify item list parsing. | Mazdak Farrokhzad | -14/+32 |
| 2020-02-13 | macro_legacy_warnings -> error | Mazdak Farrokhzad | -36/+21 |
| 2020-02-13 | fix extra subslice lowering | Mazdak Farrokhzad | -0/+44 |
| 2020-02-13 | parser: add test for 'extern crate async' | Mazdak Farrokhzad | -0/+12 |
| 2020-02-13 | ast_validation: tweak diagnostic output | Mazdak Farrokhzad | -69/+73 |
| 2020-02-13 | parser: move `ban_async_in_2015` to `fn` parsing & improve it. | Mazdak Farrokhzad | -0/+36 |
| 2020-02-13 | parser: fuse free `fn` parsing together. | Mazdak Farrokhzad | -95/+124 |
| 2020-02-13 | parser_fn_front_matter: allow `const .. extern` | Mazdak Farrokhzad | -53/+51 |
| 2020-02-13 | IsAsync -> enum Async { Yes { span: Span, .. }, No } | Mazdak Farrokhzad | -8/+22 |
| 2020-02-13 | Constness -> enum Const { Yes(Span), No } | Mazdak Farrokhzad | -13/+43 |
| 2020-02-13 | Rollup merge of #69082 - estebank:boxfuture-box-pin, r=tmandry | Dylan DPC | -2/+51 |
| 2020-02-13 | Rollup merge of #69048 - estebank:hrlt-assoc, r=nagisa | Dylan DPC | -8/+145 |
| 2020-02-13 | Rollup merge of #69008 - Aaron1011:fix/opaque-ty-parent, r=matthewjasper | Dylan DPC | -0/+32 |
| 2020-02-13 | Rollup merge of #67642 - Mark-Simulacrum:relax-bounds, r=Amanieu | Dylan DPC | -15/+5 |
| 2020-02-12 | Don't give invalid suggestion on desugared span. | spunit262 | -8/+2 |
| 2020-02-12 | Add trait `Self` filtering to `rustc_on_unimplemented` | Esteban Küber | -62/+16 |
| 2020-02-12 | Account for `Pin::new(_)` and `Pin::new(Box::new(_))` when `Box::pin(_)` woul... | Esteban Küber | -12/+15 |
| 2020-02-12 | Account for `Box::new(impl Future)` and emit help `use Box::pin` | Esteban Küber | -19/+61 |
| 2020-02-12 | Remove std lib `Span` from expected boxed future test | Esteban Küber | -28/+19 |
| 2020-02-12 | When expecting `BoxFuture` and using `async {}`, suggest `Box::pin` | Esteban Küber | -0/+59 |
| 2020-02-12 | Remove ignore and add explanation of indirect mutation peek test | Dylan MacKenzie | -1/+6 |
| 2020-02-12 | Auto merge of #69105 - Dylan-DPC:rollup-n73lh5h, r=Dylan-DPC | bors | -62/+241 |
| 2020-02-12 | Rollup merge of #69002 - RalfJung:miri-op-overflow, r=oli-obk,wesleywiser | Dylan DPC | -52/+209 |
| 2020-02-12 | Rollup merge of #68981 - estebank:silence, r=davidtwco | Dylan DPC | -6/+28 |
| 2020-02-12 | Rollup merge of #67954 - nikic:new-pm, r=nagisa | Dylan DPC | -4/+4 |