summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0388.stderr
blob: 3f662459c841755ec609b471cfa41585079bfde7 (plain)
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
error[E0017]: references in constants may only refer to immutable values
  --> $DIR/E0388.rs:4:30
   |
LL | const CR: &'static mut i32 = &mut C;
   |                              ^^^^^^ constants require immutable values

error[E0017]: references in statics may only refer to immutable values
  --> $DIR/E0388.rs:5:39
   |
LL | static STATIC_REF: &'static mut i32 = &mut X;
   |                                       ^^^^^^ statics require immutable values

error: cannot mutate statics in the initializer of another static
  --> $DIR/E0388.rs:5:39
   |
LL | static STATIC_REF: &'static mut i32 = &mut X;
   |                                       ^^^^^^

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

error[E0017]: references in statics may only refer to immutable values
  --> $DIR/E0388.rs:8:38
   |
LL | static CONST_REF: &'static mut i32 = &mut C;
   |                                      ^^^^^^ statics require immutable values

error: aborting due to 5 previous errors

Some errors occurred: E0017, E0596.
For more information about an error, try `rustc --explain E0017`.