2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: the size for values of type `(dyn Debug + Sync + 'static)` cannot be known at compilation time
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/const-unsized.rs:3:16
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
LL | const CONST_0: dyn Debug + Sync = *(&0 as &(dyn Debug + Sync));
|
|
|
|
| ^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `(dyn Debug + Sync + 'static)`
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2018-07-10 21:10:13 +00:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/const-unsized.rs:6:18
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | const CONST_FOO: str = *"foo";
|
2018-10-11 16:02:00 +00:00
|
|
|
| ^^^ doesn't have a size known at compile-time
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: the size for values of type `(dyn Debug + Sync + 'static)` cannot be known at compilation time
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/const-unsized.rs:9:18
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
LL | static STATIC_1: dyn Debug + Sync = *(&1 as &(dyn Debug + Sync));
|
|
|
|
| ^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `(dyn Debug + Sync + 'static)`
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2018-07-10 21:10:13 +00:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/const-unsized.rs:12:20
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | static STATIC_BAR: str = *"bar";
|
2018-10-11 16:02:00 +00:00
|
|
|
| ^^^ doesn't have a size known at compile-time
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|