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