| Age | Commit message (Expand) | Author | Lines |
| 2023-09-05 | Auto merge of #115553 - matthiaskrgr:rollup-c0045hz, r=matthiaskrgr | bors | -6/+121 |
| 2023-09-05 | Rollup merge of #115519 - compiler-errors:next-solver-assoc-ice, r=lcnr | Matthias Krüger | -0/+40 |
| 2023-09-05 | Rollup merge of #115492 - Enselic:large-box-move, r=oli-obk | Matthias Krüger | -6/+56 |
| 2023-09-05 | Rollup merge of #115353 - Enselic:no-optimized-mir, r=oli-obk | Matthias Krüger | -0/+25 |
| 2023-09-05 | Auto merge of #115531 - RalfJung:read_via_copy, r=scottmcm | bors | -4/+26 |
| 2023-09-05 | Auto merge of #115467 - compiler-errors:assoc-ty-object-safety, r=oli-obk | bors | -22/+59 |
| 2023-09-04 | read_via_copy: don't prematurely optimize away the read | Ralf Jung | -4/+26 |
| 2023-09-04 | Add help to allow lint for the implied by suggestion | Urgau | -0/+13 |
| 2023-09-04 | Auto merge of #115513 - Urgau:normalize-msg-after-translate, r=petrochenkov | bors | -0/+16 |
| 2023-09-03 | Don't ICE on associated type projection without feature gate | Michael Goulet | -0/+40 |
| 2023-09-03 | Auto merge of #115270 - sebastiantoh:issue-105479, r=Nadrieril | bors | -4/+80 |
| 2023-09-03 | Don't forget to normalize the translated message | Urgau | -0/+16 |
| 2023-09-03 | Rollup merge of #115478 - gurry:115462-exprfield-no-warn, r=compiler-errors | Guillaume Gomez | -4/+52 |
| 2023-09-03 | Improve clarity of diagnostic message on non-exhaustive matches | Sebastian Toh | -8/+8 |
| 2023-09-03 | Allow `large_assignments` for Box/Arc/Rc initialization | Martin Nordholts | -6/+56 |
| 2023-09-03 | Emit unused doc comment warnings for pat and expr fields | Gurinder Singh | -4/+52 |
| 2023-09-02 | Auto merge of #115429 - compiler-errors:assoc-ct-lt-fallthrough, r=cjgillot | bors | -0/+59 |
| 2023-09-02 | Do not require associated types with Self: Sized to uphold bounds when confir... | Michael Goulet | -22/+48 |
| 2023-09-02 | RPITITs are considered object-safe, they're always on Self:Sized methods | Michael Goulet | -18/+29 |
| 2023-09-02 | Auto merge of #113295 - clarfonthey:ascii-step, r=cuviper | bors | -1/+1 |
| 2023-09-01 | Rollup merge of #115424 - notriddle:notriddle/issue-106413, r=oli-obk | Matthias Krüger | -0/+159 |
| 2023-09-01 | Auto merge of #113126 - Bryanskiy:delete_old, r=petrochenkov | bors | -1173/+798 |
| 2023-09-01 | Auto merge of #111752 - dingxiangfei2009:lower-or-pattern, r=cjgillot | bors | -36/+2 |
| 2023-09-01 | Fall through when resolving elided assoc const lifetimes | Michael Goulet | -0/+59 |
| 2023-09-01 | Auto merge of #113201 - oli-obk:recursive_type_alias, r=estebank,compiler-errors | bors | -13/+70 |
| 2023-09-01 | Auto merge of #115400 - gurry:issue-115264-ice, r=compiler-errors | bors | -0/+36 |
| 2023-08-31 | diagnostics: avoid wrong `unused_parens` on `x as (T) < y` | Michael Howell | -0/+159 |
| 2023-09-01 | Return ident for ExprField and PatField HIR nodes | Gurinder Singh | -0/+36 |
| 2023-08-31 | Auto merge of #115366 - compiler-errors:associated-type-bound-implicit-lifeti... | bors | -0/+19 |
| 2023-08-31 | Auto merge of #115389 - bvanjoi:fix-115380, r=petrochenkov | bors | -1/+1 |
| 2023-08-31 | Auto merge of #115384 - lqd:default-universe-info, r=matthewjasper | bors | -0/+119 |
| 2023-08-31 | fix(resolve): update def if binding is warning ambiguity | bohan | -1/+1 |
| 2023-08-31 | Auto merge of #115290 - compiler-errors:ctor-unsafe, r=cjgillot | bors | -16/+52 |
| 2023-08-31 | Auto merge of #115392 - compiler-errors:coherence-spans, r=aliemjay | bors | -17/+7 |
| 2023-08-30 | Auto merge of #115194 - tmiasko:inline-always-encode-mir, r=compiler-errors | bors | -0/+19 |
| 2023-08-30 | Test and note unsafe ctor to fn ptr coercion | Michael Goulet | -16/+25 |
| 2023-08-30 | rustc_layout_scalar_valid_range makes ctors unsafe | Michael Goulet | -0/+27 |
| 2023-08-30 | Auto merge of #115144 - Zoxc:parallel-guard, r=compiler-errors | bors | -2/+5 |
| 2023-08-30 | Emit error instead of ICE when optimized MIR is missing | Martin Nordholts | -0/+25 |
| 2023-08-30 | Don't record spans for predicates in coherence | Michael Goulet | -17/+7 |
| 2023-08-30 | Update failure status | John Kåre Alsaker | -2/+5 |
| 2023-08-30 | add test for issue 114907 | Rémy Rakic | -0/+119 |
| 2023-08-30 | Permit recursive weak type aliases | Oli Scherer | -13/+70 |
| 2023-08-30 | Test variances of TAITs | Oli Scherer | -0/+136 |
| 2023-08-30 | Revert "Auto merge of #102417 - oli-obk:opaque_lifetimes2, r=jackh726" | Oli Scherer | -79/+62 |
| 2023-08-30 | lower bare boolean expression with if-construct | Ding Xiang Fei | -14/+2 |
| 2023-08-30 | lower ExprKind::Use, LogicalOp::Or and UnOp::Not | Ding Xiang Fei | -24/+2 |
| 2023-08-30 | Rollup merge of #115363 - kpreid:suggest-private, r=compiler-errors | Matthias Krüger | -0/+25 |
| 2023-08-30 | Rollup merge of #115355 - lqd:issue-115351, r=compiler-errors | Matthias Krüger | -0/+39 |
| 2023-08-30 | Rollup merge of #115347 - y21:generic-bound-impl-trait-ty, r=compiler-errors | Matthias Krüger | -0/+40 |