1
- error: the semantics of this pattern will change in edition 2024
1
+ error: patterns are not allowed to reset the default binding mode in edition 2024
2
2
--> $DIR/migration_lint.rs:25:9
3
3
|
4
4
LL | let Foo(mut x) = &Foo(0);
@@ -14,7 +14,7 @@ note: the lint level is defined here
14
14
LL | #![deny(rust_2024_incompatible_pat)]
15
15
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
16
16
17
- error: the semantics of this pattern will change in edition 2024
17
+ error: patterns are not allowed to reset the default binding mode in edition 2024
18
18
--> $DIR/migration_lint.rs:30:9
19
19
|
20
20
LL | let Foo(mut x) = &mut Foo(0);
@@ -25,7 +25,7 @@ LL | let Foo(mut x) = &mut Foo(0);
25
25
= warning: this changes meaning in Rust 2024
26
26
= note: for more information, see 123076
27
27
28
- error: the semantics of this pattern will change in edition 2024
28
+ error: patterns are not allowed to reset the default binding mode in edition 2024
29
29
--> $DIR/migration_lint.rs:35:9
30
30
|
31
31
LL | let Foo(ref x) = &Foo(0);
@@ -36,7 +36,7 @@ LL | let Foo(ref x) = &Foo(0);
36
36
= warning: this changes meaning in Rust 2024
37
37
= note: for more information, see 123076
38
38
39
- error: the semantics of this pattern will change in edition 2024
39
+ error: patterns are not allowed to reset the default binding mode in edition 2024
40
40
--> $DIR/migration_lint.rs:40:9
41
41
|
42
42
LL | let Foo(ref x) = &mut Foo(0);
@@ -47,7 +47,7 @@ LL | let Foo(ref x) = &mut Foo(0);
47
47
= warning: this changes meaning in Rust 2024
48
48
= note: for more information, see 123076
49
49
50
- error: the semantics of this pattern will change in edition 2024
50
+ error: patterns are not allowed to reset the default binding mode in edition 2024
51
51
--> $DIR/migration_lint.rs:57:9
52
52
|
53
53
LL | let Foo(&x) = &Foo(&0);
@@ -58,7 +58,7 @@ LL | let Foo(&x) = &Foo(&0);
58
58
= warning: this changes meaning in Rust 2024
59
59
= note: for more information, see 123076
60
60
61
- error: the semantics of this pattern will change in edition 2024
61
+ error: patterns are not allowed to reset the default binding mode in edition 2024
62
62
--> $DIR/migration_lint.rs:62:9
63
63
|
64
64
LL | let Foo(&mut x) = &Foo(&mut 0);
@@ -69,7 +69,7 @@ LL | let Foo(&mut x) = &Foo(&mut 0);
69
69
= warning: this changes meaning in Rust 2024
70
70
= note: for more information, see 123076
71
71
72
- error: the semantics of this pattern will change in edition 2024
72
+ error: patterns are not allowed to reset the default binding mode in edition 2024
73
73
--> $DIR/migration_lint.rs:67:9
74
74
|
75
75
LL | let Foo(&x) = &mut Foo(&0);
@@ -80,7 +80,7 @@ LL | let Foo(&x) = &mut Foo(&0);
80
80
= warning: this changes meaning in Rust 2024
81
81
= note: for more information, see 123076
82
82
83
- error: the semantics of this pattern will change in edition 2024
83
+ error: patterns are not allowed to reset the default binding mode in edition 2024
84
84
--> $DIR/migration_lint.rs:72:9
85
85
|
86
86
LL | let Foo(&mut x) = &mut Foo(&mut 0);
@@ -91,7 +91,7 @@ LL | let Foo(&mut x) = &mut Foo(&mut 0);
91
91
= warning: this changes meaning in Rust 2024
92
92
= note: for more information, see 123076
93
93
94
- error: the semantics of this pattern will change in edition 2024
94
+ error: patterns are not allowed to reset the default binding mode in edition 2024
95
95
--> $DIR/migration_lint.rs:81:12
96
96
|
97
97
LL | if let Some(&x) = &&&&&Some(&0u8) {
@@ -102,7 +102,7 @@ LL | if let Some(&x) = &&&&&Some(&0u8) {
102
102
= warning: this changes meaning in Rust 2024
103
103
= note: for more information, see 123076
104
104
105
- error: the semantics of this pattern will change in edition 2024
105
+ error: patterns are not allowed to reset the default binding mode in edition 2024
106
106
--> $DIR/migration_lint.rs:87:12
107
107
|
108
108
LL | if let Some(&mut x) = &&&&&Some(&mut 0u8) {
@@ -113,7 +113,7 @@ LL | if let Some(&mut x) = &&&&&Some(&mut 0u8) {
113
113
= warning: this changes meaning in Rust 2024
114
114
= note: for more information, see 123076
115
115
116
- error: the semantics of this pattern will change in edition 2024
116
+ error: patterns are not allowed to reset the default binding mode in edition 2024
117
117
--> $DIR/migration_lint.rs:93:12
118
118
|
119
119
LL | if let Some(&x) = &&&&&mut Some(&0u8) {
@@ -124,7 +124,7 @@ LL | if let Some(&x) = &&&&&mut Some(&0u8) {
124
124
= warning: this changes meaning in Rust 2024
125
125
= note: for more information, see 123076
126
126
127
- error: the semantics of this pattern will change in edition 2024
127
+ error: patterns are not allowed to reset the default binding mode in edition 2024
128
128
--> $DIR/migration_lint.rs:99:12
129
129
|
130
130
LL | if let Some(&mut Some(Some(x))) = &mut Some(&mut Some(&mut Some(0u8))) {
@@ -137,7 +137,7 @@ help: desugar the match ergonomics
137
137
LL | if let &mut Some(&mut Some(&mut Some(ref mut x))) = &mut Some(&mut Some(&mut Some(0u8))) {
138
138
| ++++ ++++ +++++++
139
139
140
- error: the semantics of this pattern will change in edition 2024
140
+ error: patterns are not allowed to reset the default binding mode in edition 2024
141
141
--> $DIR/migration_lint.rs:111:9
142
142
|
143
143
LL | let Struct { a, mut b, c } = &Struct { a: 0, b: 0, c: 0 };
@@ -150,7 +150,7 @@ help: desugar the match ergonomics
150
150
LL | let &Struct { ref a, mut b, ref c } = &Struct { a: 0, b: 0, c: 0 };
151
151
| + +++ +++
152
152
153
- error: the semantics of this pattern will change in edition 2024
153
+ error: patterns are not allowed to reset the default binding mode in edition 2024
154
154
--> $DIR/migration_lint.rs:117:9
155
155
|
156
156
LL | let Struct { a: &a, b, ref c } = &Struct { a: &0, b: &0, c: &0 };
@@ -163,7 +163,7 @@ help: desugar the match ergonomics
163
163
LL | let &Struct { a: &a, ref b, ref c } = &Struct { a: &0, b: &0, c: &0 };
164
164
| + +++
165
165
166
- error: the semantics of this pattern will change in edition 2024
166
+ error: patterns are not allowed to reset the default binding mode in edition 2024
167
167
--> $DIR/migration_lint.rs:124:12
168
168
|
169
169
LL | if let Struct { a: &Some(a), b: Some(&b), c: Some(c) } =
@@ -176,7 +176,7 @@ help: desugar the match ergonomics
176
176
LL | if let &Struct { a: &Some(a), b: &Some(&b), c: &Some(ref c) } =
177
177
| + + + +++
178
178
179
- error: patterns are not allowed to reset the default binding mode in rust 2024
179
+ error: patterns are not allowed to reset the default binding mode in edition 2024
180
180
--> $DIR/migration_lint.rs:137:9
181
181
|
182
182
LL | (Some(mut x), migration_lint_macros::mixed_edition_pat!(y)) => {
0 commit comments