| Age | Commit message (Expand) | Author | Lines |
| 2019-06-28 | arbitrary_self_types lifetime elision: --bless --compare-mode=nll. | Mazdak Farrokhzad | -0/+42 |
| 2019-06-28 | Remove query for `.pin_type()` | Taiki Endo | -2/+15 |
| 2019-06-28 | Allow lifetime elision in `Pin<&(mut) Self>` | Taiki Endo | -0/+137 |
| 2019-06-26 | rustc_typeck: correctly compute `Substs` for `Res::SelfCtor`. | Eduard-Mihai Burtescu | -0/+75 |
| 2019-06-26 | bless ui tests | Pietro Albini | -8/+1 |
| 2019-06-26 | Fix ICE involving mut references | Esteban Küber | -0/+33 |
| 2019-06-26 | Hygienize macros in the standard library | Vadim Petrochenkov | -27/+6 |
| 2019-06-26 | Handle index out of bound errors during const eval without panic | Esteban Küber | -0/+30 |
| 2019-06-26 | Regression test for issue #60654. | Felix S. Klock II | -0/+26 |
| 2019-06-06 | Add test for denying overflowing literal in loop | varkor | -1/+10 |
| 2019-06-06 | Update unreachable loop patterns test | varkor | -1/+8 |
| 2019-06-06 | Turn ICE on type arguments on variables into an error | Oliver Scherer | -0/+33 |
| 2019-06-06 | Add regression test | Esteban Küber | -0/+15 |
| 2019-05-28 | add ui tests | Mark Mansi | -0/+47 |
| 2019-05-21 | Auto merge of #60950 - taiki-e:arbitrary_self_types-tests, r=Centril | bors | -0/+990 |
| 2019-05-20 | Rollup merge of #60823 - oli-obk:used_unused_no_mangle, r=michaelwoerister | Mazdak Farrokhzad | -7/+1 |
| 2019-05-20 | Rollup merge of #60590 - petertodd:2018-test-union-nonzero, r=nikomatsakis,Ce... | Mazdak Farrokhzad | -0/+43 |
| 2019-05-19 | Move run-pass/self/* to ui/self | Taiki Endo | -0/+696 |
| 2019-05-19 | Move arbitrary_self_types's tests into ui/self | Taiki Endo | -0/+294 |
| 2019-05-19 | Rollup merge of #60924 - estebank:try-msg, r=petrochenkov | Mazdak Farrokhzad | -0/+3 |
| 2019-05-19 | Rollup merge of #60370 - Richard-W:const-layout-construction, r=sfackler | Mazdak Farrokhzad | -0/+21 |
| 2019-05-18 | Auto merge of #60252 - davidtwco:issue-57672, r=Mark-Simulacrum | bors | -51/+47 |
| 2019-05-18 | Auto merge of #60386 - Goirad:sgx-ignore-tests, r=nikomatsakis | bors | -18/+23 |
| 2019-05-17 | Auto merge of #49799 - hdhoang:46205_deny_incoherent_fundamental_impls, r=nik... | bors | -5/+2 |
| 2019-05-17 | Explain that ? converts the error type using From | Esteban Küber | -0/+3 |
| 2019-05-17 | Rollup merge of #60901 - estebank:str-str-str, r=Centril | Manish Goregaokar | -11/+170 |
| 2019-05-17 | Account for &String + String | Esteban Küber | -2/+2 |
| 2019-05-17 | Auto merge of #60171 - matthewjasper:full-nll-compare-mode, r=pnkfelix | bors | -930/+5199 |
| 2019-05-17 | Auto merge of #60892 - davidtwco:issue-60622, r=oli-obk | bors | -0/+45 |
| 2019-05-17 | Checking generic args after late bound region err. | David Wood | -0/+45 |
| 2019-05-16 | review comments | Esteban Küber | -13/+13 |
| 2019-05-16 | Fix binop span | Esteban Küber | -12/+9 |
| 2019-05-16 | Handle more string addition cases with appropriate suggestions | Esteban Küber | -4/+166 |
| 2019-05-16 | Fix span for await macro call | Esteban Küber | -1/+1 |
| 2019-05-16 | fixed issues relating to line numbers being shifted | Dario Gonzalez | -17/+17 |
| 2019-05-16 | Added ignore-sgx for appropriate tests | Dario Gonzalez | -1/+6 |
| 2019-05-16 | Review comments | Esteban Küber | -13/+13 |
| 2019-05-16 | readd match await test case | Esteban Küber | -2/+31 |
| 2019-05-16 | Point at enclosing fn/closure when it's not async | Esteban Küber | -32/+53 |
| 2019-05-16 | tidy fix | Esteban Küber | -1/+1 |
| 2019-05-16 | Simplify span usage for incorrect await | Esteban Küber | -42/+20 |
| 2019-05-16 | Parse alternative incorrect uses of await and recover | Esteban Küber | -27/+306 |
| 2019-05-16 | Rollup merge of #60691 - topecongiro:await-macro-span, r=Centril | Mazdak Farrokhzad | -1/+1 |
| 2019-05-14 | Rollup merge of #60799 - matthewjasper:allow-bound-regions-in-existential-typ... | Mazdak Farrokhzad | -0/+30 |
| 2019-05-14 | Rollup merge of #60444 - nikomatsakis:issue-60010-cycle-error-investigation, ... | Mazdak Farrokhzad | -0/+91 |
| 2019-05-14 | Update ui tests | Oliver Scherer | -7/+1 |
| 2019-05-14 | Add ui test for const Layout::from_size_align_unchecked | Richard Wiedenhöft | -0/+21 |
| 2019-05-13 | Allow late bound regions in existential types | Matthew Jasper | -0/+30 |
| 2019-05-13 | Rollup merge of #60770 - Pulkit07:issue60764, r=Centril | Mazdak Farrokhzad | -7/+21 |
| 2019-05-13 | Rollup merge of #60710 - varkor:delay_span_bug-const-parent, r=matthewjasper | Mazdak Farrokhzad | -0/+60 |