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
error[E0658]: mutable by-reference bindings are experimental
2
+
--> $DIR/feature-gate-mut-ref.rs:2:17
3
+
|
4
+
LL | let mut ref x = 10;
5
+
| ^
6
+
|
7
+
= note: see issue #123076 <https://github.com/rust-lang/rust/issues/123076> for more information
8
+
= help: add `#![feature(mut_ref)]` to the crate attributes to enable
9
+
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
10
+
11
+
error[E0658]: mutable by-reference bindings are experimental
12
+
--> $DIR/feature-gate-mut-ref.rs:6:21
13
+
|
14
+
LL | let mut ref mut z = 14;
15
+
| ^
16
+
|
17
+
= note: see issue #123076 <https://github.com/rust-lang/rust/issues/123076> for more information
18
+
= help: add `#![feature(mut_ref)]` to the crate attributes to enable
19
+
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
20
+
21
+
error[E0658]: mutable by-reference bindings are experimental
22
+
--> $DIR/feature-gate-mut-ref.rs:10:17
23
+
|
24
+
LL | let mut ref x = 10;
25
+
| ^
26
+
|
27
+
= note: see issue #123076 <https://github.com/rust-lang/rust/issues/123076> for more information
28
+
= help: add `#![feature(mut_ref)]` to the crate attributes to enable
29
+
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
30
+
31
+
error[E0658]: mutable by-reference bindings are experimental
32
+
--> $DIR/feature-gate-mut-ref.rs:12:21
33
+
|
34
+
LL | let mut ref mut y = 10;
35
+
| ^
36
+
|
37
+
= note: see issue #123076 <https://github.com/rust-lang/rust/issues/123076> for more information
38
+
= help: add `#![feature(mut_ref)]` to the crate attributes to enable
39
+
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
40
+
41
+
error: aborting due to 4 previous errors
42
+
43
+
For more information about this error, try `rustc --explain E0658`.
0 commit comments