rust/src/test/ui/generator/sized-yield.stderr

30 lines
1008 B
Plaintext
Raw Normal View History

2018-07-10 16:10:13 -05:00
error[E0277]: the size for values of type `str` cannot be known at compilation time
2018-10-04 13:49:38 -05:00
--> $DIR/sized-yield.rs:8:26
2018-01-28 13:23:49 -06:00
|
LL | let mut gen = move || {
2018-01-28 13:23:49 -06:00
| __________________________^
2019-03-09 06:03:44 -06:00
LL | |
2018-02-22 18:42:32 -06:00
LL | | yield s[..];
LL | | };
2018-06-19 17:53:51 -05:00
| |____^ doesn't have a size known at compile-time
2018-01-28 13:23:49 -06:00
|
= help: the trait `Sized` is not implemented for `str`
2018-01-28 13:23:49 -06:00
= note: the yield type of a generator must have a statically known size
2018-07-10 16:10:13 -05:00
error[E0277]: the size for values of type `str` cannot be known at compilation time
2018-10-04 13:49:38 -05:00
--> $DIR/sized-yield.rs:12:23
2018-01-28 13:23:49 -06:00
|
LL | Pin::new(&mut gen).resume(());
2018-10-04 13:49:38 -05:00
| ^^^^^^ doesn't have a size known at compile-time
|
2020-08-14 15:41:20 -05:00
::: $SRC_DIR/core/src/ops/generator.rs:LL:COL
|
LL | pub enum GeneratorState<Y, R> {
2020-09-07 04:01:45 -05:00
| - required by this bound in `GeneratorState`
2018-01-28 13:23:49 -06:00
|
= help: the trait `Sized` is not implemented for `str`
2018-01-28 13:23:49 -06:00
error: aborting due to 2 previous errors
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0277`.