2020-10-16 22:37:54 +00:00
|
|
|
warning: the feature `unsized_locals` is incomplete and may not be safe to use and/or cause compiler crashes
|
|
|
|
--> $DIR/issue-50940-with-feature.rs:1:12
|
|
|
|
|
|
|
|
|
LL | #![feature(unsized_locals, unsized_fn_params)]
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #48055 <https://github.com/rust-lang/rust/issues/48055> for more information
|
2022-09-18 15:55:36 +00:00
|
|
|
= note: `#[warn(incomplete_features)]` on by default
|
2020-10-16 22:37:54 +00:00
|
|
|
|
2018-11-18 15:19:14 +00:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2020-10-16 22:37:54 +00:00
|
|
|
--> $DIR/issue-50940-with-feature.rs:6:5
|
2018-11-18 15:19:14 +00:00
|
|
|
|
|
|
|
|
LL | A as fn(str) -> A<str>;
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: within `A<str>`, the trait `Sized` is not implemented for `str`
|
2021-03-30 20:37:30 +00:00
|
|
|
note: required because it appears within the type `A<str>`
|
|
|
|
--> $DIR/issue-50940-with-feature.rs:5:12
|
|
|
|
|
|
|
|
|
LL | struct A<X: ?Sized>(X);
|
|
|
|
| ^
|
2018-11-18 15:19:14 +00:00
|
|
|
= note: the return type of a function must have a statically known size
|
|
|
|
|
2020-10-16 22:37:54 +00:00
|
|
|
error: aborting due to previous error; 1 warning emitted
|
2018-11-18 15:19:14 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|