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