2020-08-10 07:16:30 -04:00
|
|
|
warning: taking a mutable reference to a `const` item
|
|
|
|
--> $DIR/E0017.rs:5:30
|
|
|
|
|
|
|
|
|
LL | const CR: &'static mut i32 = &mut C;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: each usage of a `const` item creates a new temporary
|
|
|
|
= note: the mutable reference will refer to this temporary, not the original `const` item
|
|
|
|
note: `const` item defined here
|
|
|
|
--> $DIR/E0017.rs:2:1
|
|
|
|
|
|
|
|
|
LL | const C: i32 = 2;
|
2022-02-13 16:27:59 +01:00
|
|
|
| ^^^^^^^^^^^^
|
2022-09-18 19:55:36 +04:00
|
|
|
= note: `#[warn(const_item_mutation)]` on by default
|
2020-08-10 07:16:30 -04:00
|
|
|
|
2021-01-16 18:05:51 +00:00
|
|
|
error[E0764]: mutable references are not allowed in the final value of constants
|
2019-11-26 17:08:46 -08:00
|
|
|
--> $DIR/E0017.rs:5:30
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | const CR: &'static mut i32 = &mut C;
|
2021-01-03 18:46:20 +00:00
|
|
|
| ^^^^^^
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2021-01-03 18:46:20 +00:00
|
|
|
error[E0658]: mutation through a reference is not allowed in statics
|
2020-08-10 07:16:30 -04:00
|
|
|
--> $DIR/E0017.rs:7:39
|
2018-11-19 13:49:07 +01:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
2021-01-03 18:46:20 +00:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
|
|
|
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
|
|
|
|
2021-01-16 18:05:51 +00:00
|
|
|
error[E0764]: mutable references are not allowed in the final value of statics
|
2021-01-03 18:46:20 +00:00
|
|
|
--> $DIR/E0017.rs:7:39
|
|
|
|
|
|
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
|
|
|
| ^^^^^^
|
2018-11-19 13:49:07 +01:00
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
error[E0596]: cannot borrow immutable static item `X` as mutable
|
2020-08-10 07:16:30 -04:00
|
|
|
--> $DIR/E0017.rs:7:39
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
2019-04-22 08:40:08 +01:00
|
|
|
| ^^^^^^ cannot borrow as mutable
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2020-08-10 07:16:30 -04:00
|
|
|
warning: taking a mutable reference to a `const` item
|
2021-01-03 18:46:20 +00:00
|
|
|
--> $DIR/E0017.rs:11:38
|
2020-08-10 07:16:30 -04:00
|
|
|
|
|
|
|
|
LL | static CONST_REF: &'static mut i32 = &mut C;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: each usage of a `const` item creates a new temporary
|
|
|
|
= note: the mutable reference will refer to this temporary, not the original `const` item
|
|
|
|
note: `const` item defined here
|
|
|
|
--> $DIR/E0017.rs:2:1
|
|
|
|
|
|
|
|
|
LL | const C: i32 = 2;
|
2022-02-13 16:27:59 +01:00
|
|
|
| ^^^^^^^^^^^^
|
2020-08-10 07:16:30 -04:00
|
|
|
|
2021-01-16 18:05:51 +00:00
|
|
|
error[E0764]: mutable references are not allowed in the final value of statics
|
2021-01-03 18:46:20 +00:00
|
|
|
--> $DIR/E0017.rs:11:38
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | static CONST_REF: &'static mut i32 = &mut C;
|
2021-01-03 18:46:20 +00:00
|
|
|
| ^^^^^^
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2021-01-16 18:05:51 +00:00
|
|
|
error[E0764]: mutable references are not allowed in the final value of statics
|
2021-01-03 18:46:20 +00:00
|
|
|
--> $DIR/E0017.rs:13:52
|
2019-11-26 17:08:46 -08:00
|
|
|
|
|
|
|
|
LL | static STATIC_MUT_REF: &'static mut i32 = unsafe { &mut M };
|
2021-01-03 18:46:20 +00:00
|
|
|
| ^^^^^^
|
2019-11-26 17:08:46 -08:00
|
|
|
|
2021-01-03 18:46:20 +00:00
|
|
|
error: aborting due to 6 previous errors; 2 warnings emitted
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2021-01-03 18:46:20 +00:00
|
|
|
Some errors have detailed explanations: E0596, E0658, E0764.
|
2020-09-29 17:31:04 -07:00
|
|
|
For more information about an error, try `rustc --explain E0596`.
|