-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Remove #![feature()] for if_let, while_let, and tuple_indexing #19473
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Looks like most of the work has been done in #19517 |
Ah, yep. Didn't even see this issue! After #19472 makes it into a snapshot, my PR should close this issue. I'll make double sure before then that I'm getting all of them. |
You'll want to remove them from the list of compiler features as well |
Pull request has been updated, thanks! |
This is a revival of rust-lang#19517 (per request of @alexcrichton) now that the new snapshots have landed. We can now remove the last feature gates for if_let, while_let, and tuple_indexing scattered throughout the test sources since these features have been added to Rust. Closes rust-lang#19473.
This is a revival of rust-lang#19517 (per request of @alexcrichton) now that the new snapshots have landed. We can now remove the last feature gates for if_let, while_let, and tuple_indexing scattered throughout the test sources since these features have been added to Rust. Closes rust-lang#19473.
These feature gates ( https://github.com/rust-lang/rust/blob/master/src/libcollections/lib.rs#L27 |
Oops, looks like the two in borrowck were added after my PR was r+'ed and I didn't see them. I'd be happy to go take them out, but it looks like #19741 actually takes care of these last three as part of the second commit, so it may potentially be better to just wait for that to land so I don't get in the way of it. |
Ah thanks, I wasn't aware they were already taken care of. |
This is a revival of rust-lang#19517 (per request of @alexcrichton) now that the new snapshots have landed. We can now remove the last feature gates for if_let, while_let, and tuple_indexing scattered throughout the test sources since these features have been added to Rust. Closes rust-lang#19473.
Needs a snapshot after #19472 lands
The text was updated successfully, but these errors were encountered: