| Age | Commit message (Expand) | Author | Lines |
| 2023-12-04 | Use default params until effects in desugaring | Deadbeef | -6/+19 |
| 2023-12-03 | Satisfy tidy | Nadrieril | -0/+183 |
| 2023-12-01 | Auto merge of #117472 - jmillikin:stable-c-str-literals, r=Nilstrieb | bors | -40/+0 |
| 2023-11-30 | Auto merge of #118379 - compiler-errors:const-params-for-partialeq, r=fee1-dead | bors | -45/+13 |
| 2023-11-29 | Rollup merge of #118333 - eduardosm:print-missing-target-features, r=est31 | Matthias Krüger | -47/+129 |
| 2023-11-29 | Rollup merge of #118191 - estebank:let-chain-typo, r=compiler-errors | Matthias Krüger | -0/+8 |
| 2023-11-28 | Add with_opt_const_effect_param helper, simplify | Michael Goulet | -2/+2 |
| 2023-11-28 | Add PartialEq<&B> for &A | Michael Goulet | -44/+12 |
| 2023-11-28 | Fix PartialEq args when #[const_trait] is enabled | Michael Goulet | -1/+1 |
| 2023-11-28 | thir-unsafeck: print list of missing target features when calling a function ... | Eduardo Sánchez Muñoz | -13/+65 |
| 2023-11-28 | Suggest `let` or `==` on typo'd let-chain | Esteban Küber | -0/+8 |
| 2023-11-28 | Auto merge of #118282 - fee1-dead-contrib:enforce-more, r=compiler-errors | bors | -30/+75 |
| 2023-11-27 | Print list of missing target features when calling a function with target fea... | Eduardo Sánchez Muñoz | -37/+67 |
| 2023-11-26 | Auto merge of #117611 - Nadrieril:linear-pass-take-4, r=cjgillot | bors | -120/+95 |
| 2023-11-25 | effects: Run `enforce_context_effects` for all method calls | Deadbeef | -30/+75 |
| 2023-11-24 | Auto merge of #118138 - Nilstrieb:one-previous-error, r=WaffleLapkin | bors | -137/+137 |
| 2023-11-24 | Manual find replace updates | Nilstrieb | -10/+10 |
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -127/+127 |
| 2023-11-24 | Add `Span` to `TraitBoundModifier` | Deadbeef | -35/+35 |
| 2023-11-22 | When failing to import `core`, suggest `std` | Esteban Küber | -5/+8 |
| 2023-11-22 | Add some tests | Nadrieril | -120/+95 |
| 2023-11-12 | Auto merge of #117817 - fmease:deny-more-tilde-const, r=fee1-dead | bors | -81/+391 |
| 2023-11-12 | Deny more `~const` trait bounds | León Orell Valerian Liehr | -81/+391 |
| 2023-11-08 | Auto merge of #116930 - RalfJung:raw-ptr-match, r=davidtwco | bors | -14/+133 |
| 2023-11-06 | Rollup merge of #117516 - matthiaskrgr:test_effects_113375_oob, r=fee1-dead | Matthias Krüger | -0/+18 |
| 2023-11-06 | Rollup merge of #117190 - matthiaskrgr:test_effects_113381, r=fee1-dead | Matthias Krüger | -0/+26 |
| 2023-11-04 | Suggest to set lint level on whole match | Nadrieril | -31/+42 |
| 2023-11-04 | Warn when lint level is set on a match arm | Nadrieril | -5/+57 |
| 2023-11-04 | Add tests | Nadrieril | -0/+96 |
| 2023-11-04 | Rollup merge of #117343 - Nadrieril:cleanup_check_match, r=davidtwco | Takayuki Maeda | -22/+22 |
| 2023-11-03 | Tweak spans for "adt defined here" note | Nadrieril | -22/+22 |
| 2023-11-02 | Pretty print Fn traits in rustc_on_unimplemented | Michael Goulet | -15/+15 |
| 2023-11-02 | add test for #113375 | Matthias Krüger | -0/+18 |
| 2023-11-02 | add test for #113381 | Matthias Krüger | -0/+26 |
| 2023-11-01 | Stabilize C string literals | John Millikin | -40/+0 |
| 2023-10-30 | Rollup merge of #117205 - weiznich:multiple_notes_for_on_unimplemented, r=com... | León Orell Valerian Liehr | -0/+3 |
| 2023-10-28 | make pointer_structural_match warn-by-default | Ralf Jung | -10/+113 |
| 2023-10-28 | also lint against fn ptr and raw ptr nested inside the const | Ralf Jung | -3/+19 |
| 2023-10-28 | patterns: reject raw pointers that are not just integers | Ralf Jung | -2/+2 |
| 2023-10-27 | Auto merge of #103208 - cjgillot:match-fake-read, r=oli-obk,RalfJung | bors | -10/+9 |
| 2023-10-27 | Allows `#[diagnostic::on_unimplemented]` attributes to have multiple | Georg Semmler | -0/+3 |
| 2023-10-26 | Deny providing explicit effect params | Deadbeef | -0/+185 |
| 2023-10-24 | Use `PlaceMention` for match scrutinees. | Camille GILLOT | -10/+9 |
| 2023-10-23 | Update `since` stability attributes in tests | David Tolnay | -1/+1 |
| 2023-10-22 | Rollup merge of #117034 - Nadrieril:fix-117033, r=cjgillot | Matthias Krüger | -0/+7 |
| 2023-10-21 | Fix #117033 | Nadrieril | -0/+7 |
| 2023-10-21 | Rollup merge of #116992 - estebank:issue-69492, r=oli-obk | Matthias Krüger | -0/+1 |
| 2023-10-21 | Mention the syntax for `use` on `mod foo;` if `foo` doesn't exist | Esteban Küber | -0/+1 |
| 2023-10-21 | Auto merge of #116734 - Nadrieril:lint-per-column, r=cjgillot | bors | -88/+135 |
| 2023-10-20 | s/generator/coroutine/ | Oli Scherer | -14/+14 |