-
Notifications
You must be signed in to change notification settings - Fork 13.3k
test(pattern): add tests for combinations of pattern features #69690
New issue
Have a question about this project? No Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “No 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? No Sign in to your account
test(pattern): add tests for combinations of pattern features #69690
Conversation
Reference issue rust-lang#67311 Tests combinations of the following pattern features: - bindings_after_at - or_patterns - slice_patterns - box_patterns
Some of the nested OR paths were being missed
This comment has been minimized.
This comment has been minimized.
Thanks, these look great! @bors r+ rollup & cc @matthewjasper for awareness. By the way, would you by any chance also like to extend the borrow checking test suites for these features? |
📌 Commit ea7b3c3 has been approved by |
🌲 The tree is currently closed for pull requests below priority 1000, this pull request will be tested once the tree is reopened |
@Centril thanks! I can do those tests as well |
…after-at-tests, r=Centril test(pattern): add tests for combinations of pattern features Reference issue rust-lang#67311 Tests combinations of the following pattern features: - bindings_after_at - or_patterns - slice_patterns - box_patterns r? @Centril
Rollup of 9 pull requests Successful merges: - #67741 (When encountering an Item in a pat context, point at the item def) - #68985 (Parse & reject postfix operators after casts) - #69656 (Use .next() instead of .nth(0) on iterators.) - #69680 (rustc_expand: Factor out `Annotatable::into_tokens` to a separate method) - #69690 (test(pattern): add tests for combinations of pattern features) - #69706 (Use subslice patterns in slice methods) - #69727 (Avoid using `unwrap()` in suggestions) - #69754 (Update deprecation version to 1.42 for Error::description) - #69782 (Don't redundantly repeat field names (clippy::redundant_field_names)) Failed merges: r? @ghost
…n-features, r=Centril test(patterns): add patterns feature tests to borrowck test suite Addresses request here: rust-lang#69690 (comment) Fixes rust-lang#67311. r? @Centril
Reference issue #67311
Tests combinations of the following pattern features:
r? @Centril