Skip to content

Commit 01b03f7

Browse files
authored
Rollup merge of rust-lang#84185 - hi-rustin:rustin-patch-macro, r=nikomatsakis
add more pat2021 tests close rust-lang#84138 r? `@nikomatsakis`
2 parents ea96ac0 + eb944c1 commit 01b03f7

5 files changed

+113
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// edition:2021
2+
#![allow(unused_macros)]
3+
macro_rules! foo { ($x:pat | $y:pat) => {} } //~ ERROR `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
4+
macro_rules! bar { ($($x:pat)+ | $($y:pat)+) => {} } //~ ERROR `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
5+
macro_rules! qux { ($x:pat, $y:pat) => {} } // should be ok
6+
macro_rules! match_any {
7+
( $expr:expr , $( $( $pat:pat )|+ => $expr_arm:expr ),+ ) => { //~ ERROR `$pat:pat` may be followed by `|`, which is not allowed for `pat` fragments
8+
match $expr {
9+
$(
10+
$( $pat => $expr_arm, )+
11+
)+
12+
}
13+
};
14+
}
15+
16+
fn main() {
17+
let result: Result<i64, i32> = Err(42);
18+
let int: i64 = match_any!(result, Ok(i) | Err(i) => i.into());
19+
assert_eq!(int, 42);
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
error: `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
2+
--> $DIR/macro-pat-pattern-followed-by-or-in-2021.rs:3:28
3+
|
4+
LL | macro_rules! foo { ($x:pat | $y:pat) => {} }
5+
| ^ not allowed after `pat` fragments
6+
|
7+
= note: allowed there are: `=>`, `,`, `=`, `if` or `in`
8+
9+
error: `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
10+
--> $DIR/macro-pat-pattern-followed-by-or-in-2021.rs:4:32
11+
|
12+
LL | macro_rules! bar { ($($x:pat)+ | $($y:pat)+) => {} }
13+
| ^ not allowed after `pat` fragments
14+
|
15+
= note: allowed there are: `=>`, `,`, `=`, `if` or `in`
16+
17+
error: `$pat:pat` may be followed by `|`, which is not allowed for `pat` fragments
18+
--> $DIR/macro-pat-pattern-followed-by-or-in-2021.rs:7:36
19+
|
20+
LL | ( $expr:expr , $( $( $pat:pat )|+ => $expr_arm:expr ),+ ) => {
21+
| ^ not allowed after `pat` fragments
22+
|
23+
= note: allowed there are: `=>`, `,`, `=`, `if` or `in`
24+
25+
error: aborting due to 3 previous errors
26+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// run-pass
2+
#![allow(unused_macros)]
3+
macro_rules! foo { ($x:pat | $y:pat) => {} } // should be ok
4+
macro_rules! bar { ($($x:pat)+ | $($y:pat)+) => {} } // should be ok
5+
macro_rules! qux { ($x:pat, $y:pat) => {} } // should be ok
6+
macro_rules! match_any {
7+
( $expr:expr , $( $( $pat:pat )|+ => $expr_arm:expr ),+ ) => { // should be ok
8+
match $expr {
9+
$(
10+
$( $pat => $expr_arm, )+
11+
)+
12+
}
13+
};
14+
}
15+
16+
fn main() {
17+
let result: Result<i64, i32> = Err(42);
18+
let int: i64 = match_any!(result, Ok(i) | Err(i) => i.into());
19+
assert_eq!(int, 42);
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#![feature(edition_macro_pats)]
2+
#![allow(unused_macros)]
3+
macro_rules! foo { ($x:pat2021 | $y:pat2021) => {} } //~ ERROR `$x:pat2021` is followed by `|`, which is not allowed for `pat2021` fragments
4+
macro_rules! baz { ($x:pat2015 | $y:pat2015) => {} } // should be ok
5+
macro_rules! qux { ($x:pat2015 | $y:pat2021) => {} } // should be ok
6+
macro_rules! ogg { ($x:pat2021 | $y:pat2015) => {} } //~ ERROR `$x:pat2021` is followed by `|`, which is not allowed for `pat2021` fragments
7+
macro_rules! match_any {
8+
( $expr:expr , $( $( $pat:pat2021 )|+ => $expr_arm:pat2021 ),+ ) => { //~ ERROR `$pat:pat2021` may be followed by `|`, which is not allowed for `pat2021` fragments
9+
match $expr {
10+
$(
11+
$( $pat => $expr_arm, )+
12+
)+
13+
}
14+
};
15+
}
16+
17+
fn main() {
18+
let result: Result<i64, i32> = Err(42);
19+
let int: i64 = match_any!(result, Ok(i) | Err(i) => i.into());
20+
assert_eq!(int, 42);
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
error: `$x:pat2021` is followed by `|`, which is not allowed for `pat2021` fragments
2+
--> $DIR/macro-pat2021-pattern-followed-by-or.rs:3:32
3+
|
4+
LL | macro_rules! foo { ($x:pat2021 | $y:pat2021) => {} }
5+
| ^ not allowed after `pat2021` fragments
6+
|
7+
= note: allowed there are: `=>`, `,`, `=`, `if` or `in`
8+
9+
error: `$x:pat2021` is followed by `|`, which is not allowed for `pat2021` fragments
10+
--> $DIR/macro-pat2021-pattern-followed-by-or.rs:6:32
11+
|
12+
LL | macro_rules! ogg { ($x:pat2021 | $y:pat2015) => {} }
13+
| ^ not allowed after `pat2021` fragments
14+
|
15+
= note: allowed there are: `=>`, `,`, `=`, `if` or `in`
16+
17+
error: `$pat:pat2021` may be followed by `|`, which is not allowed for `pat2021` fragments
18+
--> $DIR/macro-pat2021-pattern-followed-by-or.rs:8:40
19+
|
20+
LL | ( $expr:expr , $( $( $pat:pat2021 )|+ => $expr_arm:pat2021 ),+ ) => {
21+
| ^ not allowed after `pat2021` fragments
22+
|
23+
= note: allowed there are: `=>`, `,`, `=`, `if` or `in`
24+
25+
error: aborting due to 3 previous errors
26+

0 commit comments

Comments
 (0)