]> git.lizzy.rs Git - rust.git/blob - tests/ui/check-static-values-constraints.stderr
Rollup merge of #106321 - compiler-errors:delayed-bug-backtrace, r=Nilstrieb
[rust.git] / tests / ui / check-static-values-constraints.stderr
1 error[E0493]: destructor of `SafeStruct` 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    |                                                                                  the destructor for this type cannot be evaluated in statics
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]: cannot call non-const fn `<str as ToString>::to_string` in statics
19   --> $DIR/check-static-values-constraints.rs:89:38
20    |
21 LL |     field2: SafeEnum::Variant4("str".to_string())
22    |                                      ^^^^^^^^^^^
23    |
24    = note: calls in statics are limited to constant functions, tuple structs and tuple variants
25    = note: consider wrapping this expression in `Lazy::new(|| ...)` from the `once_cell` crate: https://crates.io/crates/once_cell
26
27 error[E0010]: allocations are not allowed in statics
28   --> $DIR/check-static-values-constraints.rs:94:5
29    |
30 LL |     box MyOwned,
31    |     ^^^^^^^^^^^ allocation not allowed in statics
32
33 error[E0010]: allocations are not allowed in statics
34   --> $DIR/check-static-values-constraints.rs:95:5
35    |
36 LL |     box MyOwned,
37    |     ^^^^^^^^^^^ allocation not allowed in statics
38
39 error[E0010]: allocations are not allowed in statics
40   --> $DIR/check-static-values-constraints.rs:99:6
41    |
42 LL |     &box MyOwned,
43    |      ^^^^^^^^^^^ allocation not allowed in statics
44
45 error[E0010]: allocations are not allowed in statics
46   --> $DIR/check-static-values-constraints.rs:100:6
47    |
48 LL |     &box MyOwned,
49    |      ^^^^^^^^^^^ allocation not allowed in statics
50
51 error[E0010]: allocations are not allowed in statics
52   --> $DIR/check-static-values-constraints.rs:106:5
53    |
54 LL |     box 3;
55    |     ^^^^^ allocation not allowed in statics
56
57 error[E0507]: cannot move out of static item `x`
58   --> $DIR/check-static-values-constraints.rs:110:45
59    |
60 LL |     let y = { static x: Box<isize> = box 3; x };
61    |                                             ^ move occurs because `x` has type `Box<isize>`, which does not implement the `Copy` trait
62    |
63 help: consider borrowing here
64    |
65 LL |     let y = { static x: Box<isize> = box 3; &x };
66    |                                             +
67
68 error[E0010]: allocations are not allowed in statics
69   --> $DIR/check-static-values-constraints.rs:110:38
70    |
71 LL |     let y = { static x: Box<isize> = box 3; x };
72    |                                      ^^^^^ allocation not allowed in statics
73
74 error: aborting due to 10 previous errors
75
76 Some errors have detailed explanations: E0010, E0015, E0493, E0507.
77 For more information about an error, try `rustc --explain E0010`.