File: E0017.stderr

package info (click to toggle)
rustc 1.41.1%2Bdfsg1-1~deb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 997,884 kB
  • sloc: xml: 133,832; ansic: 15,300; sh: 14,409; javascript: 6,505; python: 5,619; cpp: 3,984; makefile: 2,795; asm: 227; ruby: 68; awk: 10
file content (52 lines) | stat: -rw-r--r-- 2,212 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
error[E0658]: references in constants may only refer to immutable values
  --> $DIR/E0017.rs:5:30
   |
LL | const CR: &'static mut i32 = &mut C;
   |                              ^^^^^^ constants require immutable values
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/57349
   = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable

error[E0019]: static contains unimplemented expression type
  --> $DIR/E0017.rs:6:39
   |
LL | static STATIC_REF: &'static mut i32 = &mut X;
   |                                       ^^^^^^

error[E0658]: references in statics may only refer to immutable values
  --> $DIR/E0017.rs:6:39
   |
LL | static STATIC_REF: &'static mut i32 = &mut X;
   |                                       ^^^^^^ statics require immutable values
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/57349
   = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable

error[E0596]: cannot borrow immutable static item `X` as mutable
  --> $DIR/E0017.rs:6:39
   |
LL | static STATIC_REF: &'static mut i32 = &mut X;
   |                                       ^^^^^^ cannot borrow as mutable

error[E0658]: references in statics may only refer to immutable values
  --> $DIR/E0017.rs:9:38
   |
LL | static CONST_REF: &'static mut i32 = &mut C;
   |                                      ^^^^^^ statics require immutable values
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/57349
   = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable

error[E0658]: references in statics may only refer to immutable values
  --> $DIR/E0017.rs:10:52
   |
LL | static STATIC_MUT_REF: &'static mut i32 = unsafe { &mut M };
   |                                                    ^^^^^^ statics require immutable values
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/57349
   = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable

error: aborting due to 6 previous errors

Some errors have detailed explanations: E0019, E0596, E0658.
For more information about an error, try `rustc --explain E0019`.