]> git.lizzy.rs Git - rust.git/blob - src/test/ui/check-static-values-constraints.stderr
Rollup merge of #90498 - joshtriplett:target-tier-policy-draft-updates, r=Mark-Simulacrum
[rust.git] / src / test / ui / check-static-values-constraints.stderr
1 error[E0493]: destructors cannot be evaluated at compile-time
2   --> $DIR/check-static-values-constraints.rs:65:43
3    |
4 LL |                                           ..SafeStruct{field1: SafeEnum::Variant3(WithDtor),
5    |  ___________________________________________^
6 LL | |
7 LL | |                                                      field2: SafeEnum::Variant1}};
8    | |                                                                                ^- value is dropped here
9    | |________________________________________________________________________________|
10    |                                                                                  statics cannot evaluate destructors
11
12 error[E0010]: allocations are not allowed in statics
13   --> $DIR/check-static-values-constraints.rs:79:33
14    |
15 LL | static STATIC11: Box<MyOwned> = box MyOwned;
16    |                                 ^^^^^^^^^^^ allocation not allowed in statics
17
18 error[E0015]: calls in statics are limited to constant functions, tuple structs and tuple variants
19   --> $DIR/check-static-values-constraints.rs:89:32
20    |
21 LL |     field2: SafeEnum::Variant4("str".to_string())
22    |                                ^^^^^^^^^^^^^^^^^
23
24 error[E0010]: allocations are not allowed in statics
25   --> $DIR/check-static-values-constraints.rs:94:5
26    |
27 LL |     box MyOwned,
28    |     ^^^^^^^^^^^ allocation not allowed in statics
29
30 error[E0010]: allocations are not allowed in statics
31   --> $DIR/check-static-values-constraints.rs:95:5
32    |
33 LL |     box MyOwned,
34    |     ^^^^^^^^^^^ allocation not allowed in statics
35
36 error[E0010]: allocations are not allowed in statics
37   --> $DIR/check-static-values-constraints.rs:99:6
38    |
39 LL |     &box MyOwned,
40    |      ^^^^^^^^^^^ allocation not allowed in statics
41
42 error[E0010]: allocations are not allowed in statics
43   --> $DIR/check-static-values-constraints.rs:100:6
44    |
45 LL |     &box MyOwned,
46    |      ^^^^^^^^^^^ allocation not allowed in statics
47
48 error[E0010]: allocations are not allowed in statics
49   --> $DIR/check-static-values-constraints.rs:106:5
50    |
51 LL |     box 3;
52    |     ^^^^^ allocation not allowed in statics
53
54 error[E0507]: cannot move out of static item `x`
55   --> $DIR/check-static-values-constraints.rs:110:45
56    |
57 LL |     let y = { static x: Box<isize> = box 3; x };
58    |                                             ^
59    |                                             |
60    |                                             move occurs because `x` has type `Box<isize>`, which does not implement the `Copy` trait
61    |                                             help: consider borrowing here: `&x`
62
63 error[E0010]: allocations are not allowed in statics
64   --> $DIR/check-static-values-constraints.rs:110:38
65    |
66 LL |     let y = { static x: Box<isize> = box 3; x };
67    |                                      ^^^^^ allocation not allowed in statics
68
69 error: aborting due to 10 previous errors
70
71 Some errors have detailed explanations: E0010, E0015, E0493, E0507.
72 For more information about an error, try `rustc --explain E0010`.