| Age | Commit message (Expand) | Author | Lines |
| 2020-02-21 | Check types of statics in MIR typeck | Matthew Jasper | -2/+16 |
| 2020-02-21 | Check `Copy` lifetimes bounds when copying from a projection | Matthew Jasper | -27/+25 |
| 2020-01-27 | don't clone types that are copy, round two. | Matthias Krüger | -9/+7 |
| 2020-01-24 | Rollup merge of #68424 - estebank:suggest-borrow-for-non-copy-vec, r=davidtwco | Tyler Mandry | -4/+25 |
| 2020-01-23 | use `diagnostic_item` and modify wording | Esteban Küber | -6/+16 |
| 2020-01-21 | Suggest borrowing `Vec<NonCopy>` in for loop | Esteban Küber | -0/+11 |
| 2020-01-21 | Rollup merge of #68140 - ecstatic-morse:const-trait-bound-opt-out, r=oli-obk | Mazdak Farrokhzad | -7/+14 |
| 2020-01-20 | Add `constness` field to `ty::Predicate::Trait` | Dylan MacKenzie | -7/+14 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -1/+0 |
| 2020-01-17 | Auto merge of #67476 - mark-i-m:simplify-borrow_check-5, r=matthewjasper | bors | -879/+787 |
| 2020-01-16 | don't clone types that are copy | Matthias Krüger | -2/+2 |
| 2020-01-12 | address review comments | Mark Mansi | -13/+12 |
| 2020-01-12 | Get rid of RegionErrorNamingContext | Mark Mansi | -169/+86 |
| 2020-01-12 | rename nonlexical_regioncx -> regioncx | Mark Mansi | -48/+34 |
| 2020-01-12 | Privatize the fields of RegionInferenceContext | Mark Mansi | -38/+71 |
| 2020-01-12 | Move report_region_errors to region_errors.rs | Mark Mansi | -124/+125 |
| 2020-01-12 | Move a bunch of methods to inherent impl MirBorrowckCtxt | mark | -145/+130 |
| 2020-01-12 | Move some methods to region_infer/mod.rs | Mark Mansi | -431/+440 |
| 2020-01-12 | More separation of error reporting from region inference | Mark Mansi | -99/+77 |
| 2020-01-12 | Diagnostics should start lowercase | varkor | -2/+2 |
| 2020-01-11 | Auto merge of #67000 - spastorino:remove-promoted-from-place, r=oli-obk | bors | -550/+303 |
| 2020-01-10 | Remove PlaceBase enum and make Place base field be local: Local | Santiago Pastorino | -262/+206 |
| 2020-01-10 | Remove Static from PlaceBase | Santiago Pastorino | -188/+71 |
| 2020-01-10 | Remove unused param_env parameter | Santiago Pastorino | -44/+6 |
| 2020-01-10 | Remove StaticKind | Santiago Pastorino | -36/+20 |
| 2020-01-10 | Remove StaticKind::Promoted | Santiago Pastorino | -78/+21 |
| 2020-01-10 | Promote `Ref`s to constants instead of static | Santiago Pastorino | -11/+48 |
| 2020-01-10 | nix syntax::errors & prefer rustc_errors over errors | Mazdak Farrokhzad | -2/+1 |
| 2020-01-08 | - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} | Mazdak Farrokhzad | -0/+1 |
| 2020-01-07 | Move free_region_map to rustc::ty. | Camille GILLOT | -1/+1 |
| 2020-01-07 | Rollup merge of #67898 - matthewjasper:newtype-index-hygiene, r=Centril | Yuki Okushi | -3/+3 |
| 2020-01-07 | Rollup merge of #67671 - estebank:type-impl-trait, r=davidtwco | Yuki Okushi | -3/+8 |
| 2020-01-06 | Account for `type X = impl Trait;` in lifetime suggestion | Esteban Küber | -3/+8 |
| 2020-01-06 | Improve hygiene of `newtype_index` | Matthew Jasper | -3/+3 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -26/+27 |
| 2020-01-04 | canonicalize FxHash{Map,Set} imports | Mazdak Farrokhzad | -2/+2 |
| 2020-01-04 | Rollup merge of #67786 - Centril:canon-span, r=petrochenkov | Mazdak Farrokhzad | -5/+5 |
| 2020-01-03 | Rollup merge of #67595 - ohadravid:impl-trait-does-not-live-long-enough, r=es... | Yuki Okushi | -2/+43 |
| 2020-01-02 | Normalize `syntax::symbol` imports. | Mazdak Farrokhzad | -3/+3 |
| 2020-01-02 | Normalize `syntax::source_map` imports. | Mazdak Farrokhzad | -2/+2 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -18/+18 |
| 2019-12-31 | Change wording for lifetime suggestion for opaque types from `constraint` to ... | Ohad Ravid | -2/+2 |
| 2019-12-31 | Auto merge of #67032 - cjgillot:hirene, r=Zoxc | bors | -1/+1 |
| 2019-12-30 | Suggest adding a lifetime constraint when opaque type is responsible for "doe... | Ohad Ravid | -1/+42 |
| 2019-12-30 | Auto merge of #67474 - mark-i-m:simplify-borrow_check-4, r=matthewjasper | bors | -239/+119 |
| 2019-12-30 | Remove HirVec from Generics. | Camille GILLOT | -1/+1 |
| 2019-12-30 | Rollup merge of #67687 - estebank:issue-67634, r=matthewjasper | Yuki Okushi | -2/+20 |
| 2019-12-29 | fix review comment | mark | -5/+6 |
| 2019-12-29 | Get rid of ErrorReportingCtx | mark | -243/+122 |
| 2019-12-29 | Auto merge of #66942 - cjgillot:hirene-ty, r=Zoxc | bors | -8/+8 |