2022-02-14 16:10:22 +00:00
|
|
|
error[E0658]: `async` blocks are not allowed in constants
|
2023-06-15 09:41:14 +00:00
|
|
|
--> $DIR/issue-78722.rs:12:20
|
2021-07-26 20:01:16 +00:00
|
|
|
|
|
|
|
|
LL | let f: F = async { 1 };
|
2022-02-14 16:10:22 +00:00
|
|
|
| ^^^^^^^^^^^
|
2021-07-26 20:01:16 +00:00
|
|
|
|
|
2022-02-14 16:10:22 +00: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
|
2024-01-10 06:39:02 +00:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-02-14 16:10:22 +00:00
|
|
|
|
2023-09-09 06:36:50 +00: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 `()`
|
2023-06-15 09:41:14 +00:00
|
|
|
--> $DIR/issue-78722.rs:8:30
|
2022-02-11 07:18:06 +00:00
|
|
|
|
|
2022-05-27 19:31:10 +00:00
|
|
|
LL | fn concrete_use() -> F {
|
|
|
|
| ^ expected `()`, found `u8`
|
2021-07-26 20:01:16 +00:00
|
|
|
|
2022-11-24 16:58:32 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2021-07-26 20:01:16 +00:00
|
|
|
|
2022-11-24 16:58:32 +00:00
|
|
|
Some errors have detailed explanations: E0271, E0658.
|
2022-02-14 16:10:22 +00:00
|
|
|
For more information about an error, try `rustc --explain E0271`.
|