| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -373/+0 | |
| 2022-10-25 | Name impl trait in region bound suggestion | Michael Goulet | -2/+2 | |
| 2022-07-26 | Use real opaque type instead of just saying impl Trait | Michael Goulet | -6/+6 | |
| 2022-06-03 | Fully stabilize NLL | Jack Huey | -9/+1 | |
| 2022-05-22 | Use revisions for NLL in impl-trait | Jack Huey | -2/+0 | |
| 2022-03-28 | Revert "Auto merge of #93893 - oli-obk:sad_revert, r=oli-obk" | Oli Scherer | -15/+18 | |
| This reverts commit 6499c5e7fc173a3f55b7a3bd1e6a50e9edef782d, reversing changes made to 78450d2d602b06d9b94349aaf8cece1a4acaf3a8. | ||||
| 2022-02-11 | Revert "Auto merge of #92007 - oli-obk:lazy_tait2, r=nikomatsakis" | Oli Scherer | -18/+15 | |
| This reverts commit e7cc3bddbe0d0e374d05e7003e662bba1742dbae, reversing changes made to 734368a200904ef9c21db86c595dc04263c87be0. | ||||
| 2022-02-02 | Eagerly merge hidden types. | Oli Scherer | -4/+4 | |
| 2022-02-02 | Register member constraints on the final merged hidden type | Oli Scherer | -32/+2 | |
| Previously we did this per hidden type candiate, which didn't always have all the information available. | ||||
| 2022-02-02 | Lazily resolve type-alias-impl-trait defining uses | Oli Scherer | -17/+50 | |
| by using an opaque type obligation to bubble up comparisons between opaque types and other types Also uses proper obligation causes so that the body id works, because out of some reason nll uses body ids for logic instead of just diagnostics. | ||||
| 2021-12-17 | Fix typo in "new region bound" suggestion | Esteban Kuber | -2/+2 | |
| The lifetime name shoud always appear in text surrounded by `. | ||||
| 2021-10-18 | Remove regionck member constraint handling and leave it to mir borrowck | Oli Scherer | -42/+12 | |
| 2021-10-13 | Bless nll tests | Oli Scherer | -10/+12 | |
| 2021-10-13 | Remove explicit -Zborrowck=mir which does not affect test anymore | Oli Scherer | -6/+2 | |
| 2021-10-13 | Remove a feature attribute for an accepted feature | Oli Scherer | -2/+1 | |
| 2021-10-13 | Use a label instead of a note for member constraint errors | Oli Scherer | -7/+3 | |
| 2021-10-13 | Remove textual span from diagnostic string | Oli Scherer | -3/+3 | |
| 2021-09-28 | Pick one possible lifetime in case there are multiple choices | Oli Scherer | -2/+10 | |
| 2021-08-30 | `feature(const_generics)` -> `feature(const_param_types)` | lcnr | -19/+0 | |
| 2021-08-03 | bless trivial polonius diagnostics changes | Rémy Rakic | -1/+1 | |
| 2021-07-27 | Remove min_tait and full_tait stderr dangling files | Santiago Pastorino | -60/+0 | |
| 2021-07-27 | Make all tests use type_alias_impl_trait feature instead of min | Santiago Pastorino | -7/+33 | |
| 2021-07-27 | Use type_alias_impl_trait instead of min in compiler and lib | Santiago Pastorino | -30/+10 | |
| 2021-05-26 | bless compare-mode=nll output | Niko Matsakis | -2/+2 | |
| 2021-05-26 | stabilize member constraints | Niko Matsakis | -31/+17 | |
| 2021-03-15 | Replace `type_alias_impl_trait` by `min_type_alias_impl_trait` with no ↵ | Oli Scherer | -8/+61 | |
| actual changes in behaviour This makes `type_alias_impl_trait` not actually do anything anymore | ||||
| 2020-05-22 | Update tests | Matthew Jasper | -20/+8 | |
| 2020-04-16 | reserve variable for empty root region | Niko Matsakis | -2/+2 | |
| 2020-03-30 | bless output of ui test impl-trait/multiple-lifetimes/error-handling.rs | Remy Rakic | -2/+5 | |
| Some impl Trait fixes lead to locating more accurately the cause of a universal region error with a user annotation | ||||
| 2020-02-14 | Update tests | Matthew Jasper | -9/+58 | |
| 2020-02-14 | Explain a test | Matthew Jasper | -2/+9 | |
| 2020-01-06 | Account for `type X = impl Trait;` in lifetime suggestion | Esteban Küber | -1/+1 | |
| 2019-12-31 | Change wording for lifetime suggestion for opaque types from `constraint` to ↵ | Ohad Ravid | -1/+1 | |
| `bound` | ||||
| 2019-12-06 | bless polonius output due to lacking the 'static special-casing | Remy Rakic | -0/+12 | |
| 2019-10-27 | update tests | Mark Mansi | -0/+1 | |
| 2019-10-24 | Increase spacing for suggestions in diagnostics | Esteban Küber | -0/+1 | |
| Make the spacing between the code snippet and verbose structured suggestions consistent with note and help messages. | ||||
| 2019-09-08 | Update test stderr with results of enabling unused lints | Mark Rousskov | -1/+1 | |
| 2019-08-10 | Fix calls to resolver from rustdoc and HIR lowering | Vadim Petrochenkov | -1/+1 | |
| Cleanup some surrounding code. Support resolution of intra doc links in unnamed block scopes. (Paths from rustdoc now use early resolution and no longer need results of late resolution like all the built ribs.) Fix one test hitting file path limits on Windows. | ||||
| 2019-08-02 | Replace "existential" by "opaque" | varkor | -0/+0 | |
| 2019-08-02 | Update syntax in existing tests | varkor | -5/+5 | |
| 2019-07-06 | Remove compile-pass from compiletest | Yuki Okushi | -4/+4 | |
| Also change annotations in some tests | ||||
| 2019-07-02 | fix ICE with delay-span-bug | Niko Matsakis | -0/+18 | |
| 2019-07-02 | address nits | Niko Matsakis | -5/+5 | |
| 2019-07-02 | more nits + typos | Niko Matsakis | -2/+2 | |
| 2019-07-02 | feature-gate member constraints outside of async-await | Niko Matsakis | -7/+21 | |
| Minimizes risk. | ||||
| 2019-07-02 | bless test output | Niko Matsakis | -6/+3 | |
| 2019-07-02 | address nits by mattewjasper | Niko Matsakis | -33/+0 | |
| 2019-07-02 | account for the pick-constraint edges when reporting errors | Niko Matsakis | -0/+36 | |
| Also, thread through better span info to improve the error message to something tolerable. | ||||
| 2019-07-02 | test with explicit existential type | Niko Matsakis | -0/+2 | |
| 2019-07-02 | add a preliminary existential test; not really enough | Niko Matsakis | -0/+29 | |
