| Age | Commit message (Expand) | Author | Lines |
| 2019-06-25 | Fix incorrect double assignment in MIR for while loops | Matthew Jasper | -0/+11 |
| 2019-06-23 | Auto merge of #61778 - petrochenkov:pass, r=Mark-Simulacrum | bors | -3/+2 |
| 2019-06-21 | Add test checking our behavior for assigning over a `ConstIndex` projection. | Felix S. Klock II | -0/+59 |
| 2019-06-21 | Add test that our handling of projections hasn't gone too far: | Felix S. Klock II | -0/+52 |
| 2019-06-16 | compiletest: Remove `skip-codegen` | Vadim Petrochenkov | -3/+2 |
| 2019-06-07 | Rollup merge of #61332 - kennethbgoodin:borrowck-remove-asterisk-suggestion, ... | Mazdak Farrokhzad | -11/+11 |
| 2019-06-06 | Make sure constructors functions are type checked correctly | Matthew Jasper | -0/+127 |
| 2019-06-04 | Rollup merge of #61488 - matthewjasper:fix-nll-typeck-ices, r=pnkfelix | Pietro Albini | -0/+205 |
| 2019-06-04 | Remove asterisk suggestion for move errors in borrowck | Kenny Goodin | -11/+11 |
| 2019-06-04 | Auto merge of #61136 - matthewjasper:cannot-move-errors, r=pnkfelix | bors | -80/+65 |
| 2019-06-04 | Rollup merge of #61446 - czipperz:nll-unused_mut, r=matthewjasper | Mazdak Farrokhzad | -0/+23 |
| 2019-06-03 | Don't canonicalize `'static` in normalize | Matthew Jasper | -0/+194 |
| 2019-06-03 | Update tests for changes to cannot move errors | Matthew Jasper | -80/+65 |
| 2019-06-03 | Don't try to lower ReEmpty in NLL | Matthew Jasper | -0/+11 |
| 2019-06-02 | Use a type implementing Drop | Chris Gregory | -2/+18 |
| 2019-06-01 | Add test | Chris Gregory | -0/+7 |
| 2019-06-01 | rustc: collect upvars from HIR, instead of during name resolution. | Eduard-Mihai Burtescu | -9/+9 |
| 2019-05-30 | Update ui and run-pass for ellipsis_inclusive_range_patterns lint | memoryruins | -3/+3 |
| 2019-05-29 | Update ui test suite to use dyn | memoryruins | -5/+5 |
| 2019-05-24 | Move async/await tests to test/ui/async-await | varkor | -21/+0 |
| 2019-05-21 | Dont show variables from desugarings in borrowck errors | Matthew Jasper | -0/+69 |
| 2019-05-17 | Auto merge of #60171 - matthewjasper:full-nll-compare-mode, r=pnkfelix | bors | -526/+578 |
| 2019-05-13 | Rollup merge of #60176 - matthewjasper:yield-ref-to-local, r=pnkfelix | Mazdak Farrokhzad | -9/+9 |
| 2019-05-12 | Remove feature(nll) when compare mode is sufficient | Matthew Jasper | -526/+504 |
| 2019-05-12 | Change compare mode to use -Zborrowck=mir | Matthew Jasper | -0/+74 |
| 2019-05-09 | Rollup merge of #60648 - petrochenkov:shorten2, r=Dylan-DPC | Mazdak Farrokhzad | -2/+1 |
| 2019-05-09 | Skip codegen for one UI test with long file path | Vadim Petrochenkov | -2/+1 |
| 2019-05-09 | cleanup: Remove `DefIndexAddressSpace` | Vadim Petrochenkov | -119/+119 |
| 2019-05-03 | Update tests | Christopher Vittal | -278/+39 |
| 2019-04-26 | Search for incompatible universes in borrow errors | Matthew Jasper | -0/+52 |
| 2019-04-22 | Explain error when yielding a reference to a local variable | Matthew Jasper | -9/+9 |
| 2019-04-22 | Remove double trailing newlines | varkor | -5/+0 |
| 2019-04-22 | update tests for migrate mode by default | Matthew Jasper | -493/+169 |
| 2019-04-18 | hide `--explain` hint if error has no extended info | Andy Russell | -30/+19 |
| 2019-04-14 | Rollup merge of #59708 - matthewjasper:double-closure-unused-mut, r=pnkfelix | Mazdak Farrokhzad | -8/+11 |
| 2019-04-07 | Auto merge of #58739 - matthewjasper:more-restrictive-tpb, r=pnkfelix | bors | -123/+0 |
| 2019-04-05 | Include trailing comma in multiline Debug representation | David Tolnay | -84/+84 |
| 2019-04-04 | Mark variables captured by reference as mutable correctly | Matthew Jasper | -8/+11 |
| 2019-04-04 | Update tests for restrictive two-phase borrows | Matthew Jasper | -123/+0 |
| 2019-03-31 | Suggest using anonymous lifetime in `impl Trait` return without hacks | Esteban Küber | -4/+4 |
| 2019-03-19 | Rollup merge of #57729 - pnkfelix:issue-55748-pat-types-are-constraints-on-bi... | Mazdak Farrokhzad | -0/+99 |
| 2019-03-17 | Updated UI test output to remove test annotations for revisions | Mathias Blikstad | -7/+7 |
| 2019-03-15 | rustc: always rely on '_ to be not printed by ty::Region itself. | Eduard-Mihai Burtescu | -7/+7 |
| 2019-03-13 | test that wildcard type `_` is not duplicated by `type Foo<X> = (X, X);` and ... | Felix S. Klock II | -0/+99 |
| 2019-03-13 | Rollup merge of #59083 - kyren:master, r=varkor | Mazdak Farrokhzad | -29/+9 |
| 2019-03-12 | Rename test struct names to something more sensible | kyren | -8/+8 |
| 2019-03-11 | Update NLL tests | Vadim Petrochenkov | -15/+15 |
| 2019-03-11 | Update tests | Vadim Petrochenkov | -282/+282 |
| 2019-03-10 | Fix #54822 and associated faulty tests | kyren | -21/+1 |
| 2019-03-03 | Auto merge of #58673 - matthewjasper:typeck-ptr-coercions, r=pnkfelix | bors | -0/+221 |