2022-02-14 10:10:22 -06:00
|
|
|
error[E0658]: `async` blocks are not allowed in constants
|
2023-06-15 04:41:14 -05:00
|
|
|
--> $DIR/issue-78722.rs:12:20
|
2021-07-26 15:01:16 -05:00
|
|
|
|
|
|
|
|
LL | let f: F = async { 1 };
|
2022-02-14 10:10:22 -06:00
|
|
|
| ^^^^^^^^^^^
|
2021-07-26 15:01:16 -05:00
|
|
|
|
|
2022-02-14 10:10:22 -06:00
|
|
|
= note: see issue #85368 <https://github.com/rust-lang/rust/issues/85368> for more information
|
|
|
|
= help: add `#![feature(const_async_blocks)]` to the crate attributes to enable
|
|
|
|
|
2023-06-15 04:41:14 -05:00
|
|
|
error[E0271]: expected `[async block@$DIR/issue-78722.rs:10:13: 10:21]` to be a future that resolves to `u8`, but it resolves to `()`
|
|
|
|
--> $DIR/issue-78722.rs:8:30
|
2022-02-11 01:18:06 -06:00
|
|
|
|
|
2022-05-27 14:31:10 -05:00
|
|
|
LL | fn concrete_use() -> F {
|
|
|
|
| ^ expected `()`, found `u8`
|
2021-07-26 15:01:16 -05:00
|
|
|
|
2022-11-24 10:58:32 -06:00
|
|
|
error: aborting due to 2 previous errors
|
2021-07-26 15:01:16 -05:00
|
|
|
|
2022-11-24 10:58:32 -06:00
|
|
|
Some errors have detailed explanations: E0271, E0658.
|
2022-02-14 10:10:22 -06:00
|
|
|
For more information about an error, try `rustc --explain E0271`.
|