@@ -5,6 +5,17 @@ LL | const CONST_0: dyn Debug + Sync = *(&0 as &(dyn Debug + Sync));
5
5
| ^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
6
6
|
7
7
= help: the trait `Sized` is not implemented for `(dyn Debug + Sync + 'static)`
8
+ = note: statics and constants must have a statically known size
9
+
10
+ error[E0277]: the size for values of type `(dyn Debug + Sync + 'static)` cannot be known at compilation time
11
+ --> $DIR/const-unsized.rs:3:16
12
+ |
13
+ LL | const CONST_0: dyn Debug + Sync = *(&0 as &(dyn Debug + Sync));
14
+ | ^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
15
+ |
16
+ = help: the trait `Sized` is not implemented for `(dyn Debug + Sync + 'static)`
17
+ = note: statics and constants must have a statically known size
18
+ = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
8
19
9
20
error[E0277]: the size for values of type `str` cannot be known at compilation time
10
21
--> $DIR/const-unsized.rs:7:18
@@ -13,6 +24,26 @@ LL | const CONST_FOO: str = *"foo";
13
24
| ^^^ doesn't have a size known at compile-time
14
25
|
15
26
= help: the trait `Sized` is not implemented for `str`
27
+ = note: statics and constants must have a statically known size
28
+
29
+ error[E0277]: the size for values of type `str` cannot be known at compilation time
30
+ --> $DIR/const-unsized.rs:7:18
31
+ |
32
+ LL | const CONST_FOO: str = *"foo";
33
+ | ^^^ doesn't have a size known at compile-time
34
+ |
35
+ = help: the trait `Sized` is not implemented for `str`
36
+ = note: statics and constants must have a statically known size
37
+ = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
38
+
39
+ error[E0277]: the size for values of type `(dyn Debug + Sync + 'static)` cannot be known at compilation time
40
+ --> $DIR/const-unsized.rs:11:18
41
+ |
42
+ LL | static STATIC_1: dyn Debug + Sync = *(&1 as &(dyn Debug + Sync));
43
+ | ^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
44
+ |
45
+ = help: the trait `Sized` is not implemented for `(dyn Debug + Sync + 'static)`
46
+ = note: statics and constants must have a statically known size
16
47
17
48
error[E0277]: the size for values of type `(dyn Debug + Sync + 'static)` cannot be known at compilation time
18
49
--> $DIR/const-unsized.rs:11:18
@@ -21,6 +52,8 @@ LL | static STATIC_1: dyn Debug + Sync = *(&1 as &(dyn Debug + Sync));
21
52
| ^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
22
53
|
23
54
= help: the trait `Sized` is not implemented for `(dyn Debug + Sync + 'static)`
55
+ = note: statics and constants must have a statically known size
56
+ = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
24
57
25
58
error[E0277]: the size for values of type `str` cannot be known at compilation time
26
59
--> $DIR/const-unsized.rs:15:20
@@ -29,30 +62,17 @@ LL | static STATIC_BAR: str = *"bar";
29
62
| ^^^ doesn't have a size known at compile-time
30
63
|
31
64
= help: the trait `Sized` is not implemented for `str`
65
+ = note: statics and constants must have a statically known size
32
66
33
- error[E0507]: cannot move out of a shared reference
34
- --> $DIR/const-unsized.rs:3:35
35
- |
36
- LL | const CONST_0: dyn Debug + Sync = *(&0 as &(dyn Debug + Sync));
37
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ move occurs because value has type `dyn Debug + Sync`, which does not implement the `Copy` trait
38
-
39
- error[E0507]: cannot move out of a shared reference
40
- --> $DIR/const-unsized.rs:7:24
41
- |
42
- LL | const CONST_FOO: str = *"foo";
43
- | ^^^^^^ move occurs because value has type `str`, which does not implement the `Copy` trait
44
-
45
- error[E0507]: cannot move out of a shared reference
46
- --> $DIR/const-unsized.rs:11:37
47
- |
48
- LL | static STATIC_1: dyn Debug + Sync = *(&1 as &(dyn Debug + Sync));
49
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ move occurs because value has type `dyn Debug + Sync`, which does not implement the `Copy` trait
50
-
51
- error[E0507]: cannot move out of a shared reference
52
- --> $DIR/const-unsized.rs:15:26
67
+ error[E0277]: the size for values of type `str` cannot be known at compilation time
68
+ --> $DIR/const-unsized.rs:15:20
53
69
|
54
70
LL | static STATIC_BAR: str = *"bar";
55
- | ^^^^^^ move occurs because value has type `str`, which does not implement the `Copy` trait
71
+ | ^^^ doesn't have a size known at compile-time
72
+ |
73
+ = help: the trait `Sized` is not implemented for `str`
74
+ = note: statics and constants must have a statically known size
75
+ = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
56
76
57
77
error[E0161]: cannot move a value of type `str`
58
78
--> $DIR/const-unsized.rs:20:48
@@ -68,5 +88,5 @@ LL | println!("{:?} {:?} {:?} {:?}", &CONST_0, &CONST_FOO, &STATIC_1, &STATI
68
88
69
89
error: aborting due to 10 previous errors
70
90
71
- Some errors have detailed explanations: E0161, E0277, E0507 .
91
+ Some errors have detailed explanations: E0161, E0277.
72
92
For more information about an error, try `rustc --explain E0161`.
0 commit comments