2023-10-23 09:29:00 -05:00
|
|
|
error[E0658]: yield syntax is experimental
|
|
|
|
--> $DIR/gen_block.rs:15:16
|
|
|
|
|
|
|
|
|
LL | let _ = || yield true;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #43122 <https://github.com/rust-lang/rust/issues/43122> for more information
|
|
|
|
= help: add `#![feature(coroutines)]` to the crate attributes to enable
|
2024-01-10 00:39:02 -06:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2023-10-23 09:29:00 -05:00
|
|
|
|
2023-10-20 16:26:57 -05:00
|
|
|
error[E0282]: type annotations needed
|
2023-12-29 13:26:19 -06:00
|
|
|
--> $DIR/gen_block.rs:6:13
|
2023-10-05 06:30:55 -05:00
|
|
|
|
|
|
|
|
LL | let x = gen {};
|
2023-12-29 13:26:19 -06:00
|
|
|
| ^^^^^^ cannot infer type
|
2023-10-05 06:30:55 -05:00
|
|
|
|
2023-10-23 09:29:00 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2023-10-05 06:30:55 -05:00
|
|
|
|
2023-10-23 09:29:00 -05:00
|
|
|
Some errors have detailed explanations: E0282, E0658.
|
|
|
|
For more information about an error, try `rustc --explain E0282`.
|