rust/tests/ui/consts/const-unsized.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.4 KiB
Plaintext
Raw Normal View History

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
|
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
|
= help: the trait `Sized` is not implemented for `(dyn Debug + Sync + 'static)`
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
|
2018-02-22 18:42:32 -06:00
LL | const CONST_FOO: str = *"foo";
| ^^^ doesn't have a size known at compile-time
|
= help: the trait `Sized` is not implemented for `str`
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
|
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
|
= help: the trait `Sized` is not implemented for `(dyn Debug + Sync + 'static)`
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
|
2018-02-22 18:42:32 -06:00
LL | static STATIC_BAR: str = *"bar";
| ^^^ doesn't have a size known at compile-time
|
= help: the trait `Sized` is not implemented for `str`
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`.