You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/test/ui/macros/macro-or-patterns-back-compat.fixed
+6-7
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,14 @@
1
1
// run-rustfix
2
2
3
-
#![feature(edition_macro_pats)]
4
3
#![deny(or_patterns_back_compat)]
5
4
#![allow(unused_macros)]
6
-
macro_rules! foo { ($x:pat2015 | $y:pat) => {} } //~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
7
-
macro_rules! bar { ($($x:pat2015)+ | $($y:pat)+) => {} } //~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
8
-
macro_rules! baz { ($x:pat2015 | $y:pat2015) => {} } // should be ok
9
-
macro_rules! qux { ($x:pat2015 | $y:pat) => {} } // should be ok
10
-
macro_rules! ogg { ($x:pat2015 | $y:pat2015) => {} } //~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
5
+
macro_rules! foo { ($x:pat_param | $y:pat) => {} } //~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
6
+
macro_rules! bar { ($($x:pat_param)+ | $($y:pat)+) => {} } //~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
7
+
macro_rules! baz { ($x:pat_param | $y:pat_param) => {} } // should be ok
8
+
macro_rules! qux { ($x:pat_param | $y:pat) => {} } // should be ok
9
+
macro_rules! ogg { ($x:pat_param | $y:pat_param) => {} } //~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
11
10
macro_rules! match_any {
12
-
( $expr:expr , $( $( $pat:pat2015 )|+ => $expr_arm:expr ),+ ) => { //~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
11
+
( $expr:expr , $( $( $pat:pat_param )|+ => $expr_arm:expr ),+ ) => { //~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
Copy file name to clipboardExpand all lines: src/test/ui/macros/macro-or-patterns-back-compat.rs
+3-4
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,12 @@
1
1
// run-rustfix
2
2
3
-
#![feature(edition_macro_pats)]
4
3
#![deny(or_patterns_back_compat)]
5
4
#![allow(unused_macros)]
6
5
macro_rules! foo {($x:pat | $y:pat) => {}}//~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
7
6
macro_rules! bar {($($x:pat)+ | $($y:pat)+) => {}}//~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
8
-
macro_rules! baz {($x:pat2015 | $y:pat2015) => {}}// should be ok
9
-
macro_rules! qux {($x:pat2015 | $y:pat) => {}}// should be ok
10
-
macro_rules! ogg {($x:pat | $y:pat2015) => {}}//~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
7
+
macro_rules! baz {($x:pat_param | $y:pat_param) => {}}// should be ok
8
+
macro_rules! qux {($x:pat_param | $y:pat) => {}}// should be ok
9
+
macro_rules! ogg {($x:pat | $y:pat_param) => {}}//~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
11
10
macro_rules! match_any {
12
11
( $expr:expr , $( $( $pat:pat )|+ => $expr_arm:expr ),+ ) => {//~ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
Copy file name to clipboardExpand all lines: src/test/ui/macros/macro-pat2021-pattern-followed-by-or.rs
+7-6
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,12 @@
1
-
#![feature(edition_macro_pats)]
1
+
// edition:2021
2
+
2
3
#![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
4
+
macro_rules! foo {($x:pat | $y:pat) => {}}//~ ERROR `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
5
+
macro_rules! baz {($x:pat_param | $y:pat_param) => {}}// should be ok
6
+
macro_rules! qux {($x:pat_param | $y:pat) => {}}// should be ok
7
+
macro_rules! ogg {($x:pat | $y:pat_param) => {}}//~ ERROR `$x:pat` is followed by `|`, which is not allowed for `pat` fragments
7
8
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
+
( $expr:expr , $( $( $pat:pat)|+ => $expr_arm:pat),+ ) => {//~ ERROR `$pat:pat` may be followed by `|`, which is not allowed for `pat` fragments
0 commit comments