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
+13-4
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,22 @@
2
2
3
3
#![deny(or_patterns_back_compat)]
4
4
#![allow(unused_macros)]
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
//~^ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
8
+
//~| WARN this was previously accepted
9
+
macro_rules! bar { ($($x:pat_param)+ | $($y:pat)+) => {} }
10
+
//~^ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
11
+
//~| WARN this was previously accepted
7
12
macro_rules! baz { ($x:pat_param | $y:pat_param) => {} } // should be ok
8
13
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
//~^ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
16
+
//~| WARN this was previously accepted
10
17
macro_rules! match_any {
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
+13-4
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,22 @@
2
2
3
3
#![deny(or_patterns_back_compat)]
4
4
#![allow(unused_macros)]
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
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
5
+
6
+
macro_rules! foo {($x:pat | $y:pat) => {}}
7
+
//~^ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
8
+
//~| WARN this was previously accepted
9
+
macro_rules! bar {($($x:pat)+ | $($y:pat)+) => {}}
10
+
//~^ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
11
+
//~| WARN this was previously accepted
7
12
macro_rules! baz {($x:pat_param | $y:pat_param) => {}}// should be ok
8
13
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
14
+
macro_rules! ogg {($x:pat | $y:pat_param) => {}}
15
+
//~^ ERROR the meaning of the `pat` fragment specifier is changing in Rust 2021, which may affect this macro
16
+
//~| WARN this was previously accepted
10
17
macro_rules! match_any {
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
0 commit comments