rust/tests/ui/sized/unsized-binding.stderr

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

14 lines
499 B
Plaintext
Raw Normal View History

2023-06-30 03:06:15 +00:00
error[E0277]: the size for values of type `str` cannot be known at compilation time
--> $DIR/unsized-binding.rs:2:9
|
LL | let x = *"";
| ^ doesn't have a size known at compile-time
|
= help: the trait `Sized` is not implemented for `str`
= note: all local variables must have a statically known size
= help: unsized locals are gated as an unstable feature
error: aborting due to 1 previous error
2023-06-30 03:06:15 +00:00
For more information about this error, try `rustc --explain E0277`.