2020-06-18 19:52:37 +00:00
|
|
|
error[E0764]: mutable references are not allowed in constants
|
2019-11-27 01:08:46 +00:00
|
|
|
--> $DIR/E0017.rs:5:30
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | const CR: &'static mut i32 = &mut C;
|
2020-06-15 17:05:24 +00:00
|
|
|
| ^^^^^^ `&mut` is only allowed in `const fn`
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2019-11-27 01:08:46 +00:00
|
|
|
error[E0019]: static contains unimplemented expression type
|
|
|
|
--> $DIR/E0017.rs:6:39
|
|
|
|
|
|
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
|
|
|
| ^^^^^^
|
2020-05-04 21:33:10 +00:00
|
|
|
|
|
|
|
|
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
2019-11-27 01:08:46 +00:00
|
|
|
|
2020-06-18 19:52:37 +00:00
|
|
|
error[E0764]: mutable references are not allowed in statics
|
2019-11-27 01:08:46 +00:00
|
|
|
--> $DIR/E0017.rs:6:39
|
2018-11-19 12:49:07 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
2020-06-15 17:05:24 +00:00
|
|
|
| ^^^^^^ `&mut` is only allowed in `const fn`
|
2018-11-19 12:49:07 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0596]: cannot borrow immutable static item `X` as mutable
|
2019-11-27 01:08:46 +00:00
|
|
|
--> $DIR/E0017.rs:6:39
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | static STATIC_REF: &'static mut i32 = &mut X;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^^^^ cannot borrow as mutable
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2020-06-18 19:52:37 +00:00
|
|
|
error[E0764]: mutable references are not allowed in statics
|
2019-11-27 01:08:46 +00:00
|
|
|
--> $DIR/E0017.rs:9:38
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | static CONST_REF: &'static mut i32 = &mut C;
|
2020-06-15 17:05:24 +00:00
|
|
|
| ^^^^^^ `&mut` is only allowed in `const fn`
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2020-06-18 19:52:37 +00:00
|
|
|
error[E0764]: mutable references are not allowed in statics
|
2019-11-27 01:08:46 +00:00
|
|
|
--> $DIR/E0017.rs:10:52
|
|
|
|
|
|
|
|
|
LL | static STATIC_MUT_REF: &'static mut i32 = unsafe { &mut M };
|
2020-06-15 17:05:24 +00:00
|
|
|
| ^^^^^^ `&mut` is only allowed in `const fn`
|
2019-11-27 01:08:46 +00:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2020-06-18 19:52:37 +00:00
|
|
|
Some errors have detailed explanations: E0019, E0596, E0764.
|
2019-11-28 17:20:28 +00:00
|
|
|
For more information about an error, try `rustc --explain E0019`.
|