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