summary refs log tree commit diff
path: root/src/test/ui/static/static-mut-not-constant.stderr
blob: a618b49d1089efd70f462d6c8bc2d74b75547c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0010]: allocations are not allowed in statics
  --> $DIR/static-mut-not-constant.rs:3:28
   |
LL | static mut a: Box<isize> = box 3;
   |                            ^^^^^ allocation not allowed in statics

error[E0019]: static contains unimplemented expression type
  --> $DIR/static-mut-not-constant.rs:3:32
   |
LL | static mut a: Box<isize> = box 3;
   |                                ^
   |
   = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable

error: aborting due to 2 previous errors

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