-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Add syntactic and semantic tests for rest patterns, i.e. ..
#63111
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// Here we test that rest patterns, i.e. `..`, are not allowed | ||
// outside of slice (+ ident patterns witin those), tuple, | ||
// and tuple struct patterns and that duplicates are caught in these contexts. | ||
|
||
#![feature(slice_patterns, box_patterns)] | ||
|
||
fn main() {} | ||
|
||
macro_rules! mk_pat { | ||
() => { .. } //~ ERROR `..` patterns are not allowed here | ||
} | ||
|
||
fn rest_patterns() { | ||
let mk_pat!(); | ||
|
||
// Top level: | ||
fn foo(..: u8) {} //~ ERROR `..` patterns are not allowed here | ||
let ..; //~ ERROR `..` patterns are not allowed here | ||
|
||
// Box patterns: | ||
let box ..; //~ ERROR `..` patterns are not allowed here | ||
|
||
// In or-patterns: | ||
match 1 { | ||
1 | .. => {} //~ ERROR `..` patterns are not allowed here | ||
} | ||
|
||
// Ref patterns: | ||
let &..; //~ ERROR `..` patterns are not allowed here | ||
let &mut ..; //~ ERROR `..` patterns are not allowed here | ||
|
||
// Ident patterns: | ||
let x @ ..; //~ ERROR `..` patterns are not allowed here | ||
let ref x @ ..; //~ ERROR `..` patterns are not allowed here | ||
let ref mut x @ ..; //~ ERROR `..` patterns are not allowed here | ||
|
||
// Tuple: | ||
let (..): (u8,); // OK. | ||
let (..,): (u8,); // OK. | ||
let ( | ||
.., | ||
.., //~ ERROR `..` can only be used once per tuple pattern | ||
.. //~ ERROR `..` can only be used once per tuple pattern | ||
): (u8, u8, u8); | ||
let ( | ||
.., | ||
x, | ||
.. //~ ERROR `..` can only be used once per tuple pattern | ||
): (u8, u8, u8); | ||
|
||
struct A(u8, u8, u8); | ||
|
||
// Tuple struct (same idea as for tuple patterns): | ||
let A(..); // OK. | ||
let A(..,); // OK. | ||
let A( | ||
.., | ||
.., //~ ERROR `..` can only be used once per tuple struct pattern | ||
.. //~ ERROR `..` can only be used once per tuple struct pattern | ||
); | ||
let A( | ||
.., | ||
x, | ||
.. //~ ERROR `..` can only be used once per tuple struct pattern | ||
); | ||
|
||
// Array/Slice: | ||
let [..]: &[u8]; // OK. | ||
let [..,]: &[u8]; // OK. | ||
let [ | ||
.., | ||
.., //~ ERROR `..` can only be used once per slice pattern | ||
.. //~ ERROR `..` can only be used once per slice pattern | ||
]: &[u8]; | ||
let [ | ||
.., | ||
ref x @ .., //~ ERROR `..` can only be used once per slice pattern | ||
ref mut y @ .., //~ ERROR `..` can only be used once per slice pattern | ||
(ref z @ ..), //~ ERROR `..` patterns are not allowed here | ||
.. //~ ERROR `..` can only be used once per slice pattern | ||
]: &[u8]; | ||
} |
188 changes: 188 additions & 0 deletions
188
src/test/ui/pattern/rest-pat-semantic-disallowed.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:10:13 | ||
| | ||
LL | () => { .. } | ||
| ^^ | ||
... | ||
LL | let mk_pat!(); | ||
| --------- in this macro invocation | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:18:9 | ||
| | ||
LL | let ..; | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:21:13 | ||
| | ||
LL | let box ..; | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:25:13 | ||
| | ||
LL | 1 | .. => {} | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:29:10 | ||
| | ||
LL | let &..; | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:30:14 | ||
| | ||
LL | let &mut ..; | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:33:13 | ||
| | ||
LL | let x @ ..; | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:34:17 | ||
| | ||
LL | let ref x @ ..; | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:35:21 | ||
| | ||
LL | let ref mut x @ ..; | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` can only be used once per tuple pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:42:9 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | .., | ||
| ^^ can only be used once per tuple pattern | ||
|
||
error: `..` can only be used once per tuple pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:43:9 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | .., | ||
LL | .. | ||
| ^^ can only be used once per tuple pattern | ||
|
||
error: `..` can only be used once per tuple pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:48:9 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | x, | ||
LL | .. | ||
| ^^ can only be used once per tuple pattern | ||
|
||
error: `..` can only be used once per tuple struct pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:58:9 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | .., | ||
| ^^ can only be used once per tuple struct pattern | ||
|
||
error: `..` can only be used once per tuple struct pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:59:9 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | .., | ||
LL | .. | ||
| ^^ can only be used once per tuple struct pattern | ||
|
||
error: `..` can only be used once per tuple struct pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:64:9 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | x, | ||
LL | .. | ||
| ^^ can only be used once per tuple struct pattern | ||
|
||
error: `..` can only be used once per slice pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:72:9 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | .., | ||
| ^^ can only be used once per slice pattern | ||
|
||
error: `..` can only be used once per slice pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:73:9 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | .., | ||
LL | .. | ||
| ^^ can only be used once per slice pattern | ||
|
||
error: `..` can only be used once per slice pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:77:17 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | ref x @ .., | ||
| ^^ can only be used once per slice pattern | ||
|
||
error: `..` can only be used once per slice pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:78:21 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
LL | ref x @ .., | ||
LL | ref mut y @ .., | ||
| ^^ can only be used once per slice pattern | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:79:18 | ||
| | ||
LL | (ref z @ ..), | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: `..` can only be used once per slice pattern | ||
--> $DIR/rest-pat-semantic-disallowed.rs:80:9 | ||
| | ||
LL | .., | ||
| -- previously used here | ||
... | ||
LL | .. | ||
| ^^ can only be used once per slice pattern | ||
|
||
error: `..` patterns are not allowed here | ||
--> $DIR/rest-pat-semantic-disallowed.rs:17:12 | ||
| | ||
LL | fn foo(..: u8) {} | ||
| ^^ | ||
| | ||
= note: only allowed in tuple, tuple struct, and slice patterns | ||
|
||
error: aborting due to 22 previous errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// Here we test that `..` is allowed in all pattern locations *syntactically*. | ||
// The semantic test is in `rest-pat-semantic-disallowed.rs`. | ||
|
||
// check-pass | ||
|
||
fn main() {} | ||
|
||
macro_rules! accept_pat { | ||
($p:pat) => {} | ||
} | ||
|
||
accept_pat!(..); | ||
|
||
#[cfg(FALSE)] | ||
fn rest_patterns() { | ||
// Top level: | ||
fn foo(..: u8) {} | ||
let ..; | ||
|
||
// Box patterns: | ||
let box ..; | ||
|
||
// In or-patterns: | ||
match x { | ||
.. | .. => {} | ||
} | ||
|
||
// Ref patterns: | ||
let &..; | ||
let &mut ..; | ||
|
||
// Ident patterns: | ||
let x @ ..; | ||
let ref x @ ..; | ||
let ref mut x @ ..; | ||
|
||
// Tuple: | ||
let (..); // This is interpreted as a tuple pattern, not a parenthesis one. | ||
let (..,); // Allowing trailing comma. | ||
let (.., .., ..); // Duplicates also. | ||
let (.., P, ..); // Including with things in between. | ||
|
||
// Tuple struct (same idea as for tuple patterns): | ||
let A(..); | ||
let A(..,); | ||
let A(.., .., ..); | ||
let A(.., P, ..); | ||
|
||
// Array/Slice (like with tuple patterns): | ||
let [..]; | ||
let [..,]; | ||
let [.., .., ..]; | ||
let [.., P, ..]; | ||
|
||
// Random walk to guard against special casing: | ||
match x { | ||
.. | | ||
[ | ||
( | ||
box .., | ||
&(..), | ||
&mut .., | ||
x @ .. | ||
), | ||
ref x @ .., | ||
] | | ||
ref mut x @ .. | ||
=> {} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should have a
MachineApplicable
tool_only_span_suggestion
to remove the later one.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not 100% sure that's
MachineApplicable
tho.E.g. consider
(a, .., b, ..)
-- the user could ostensibly intend for the compiler to magically figure out how many parts to skip in the first..
and then for the second..
.