2024-08-26 12:51:16 +00:00
|
|
|
error[E0658]: `async` blocks are not allowed in constants
|
2024-08-17 12:19:34 +00:00
|
|
|
--> $DIR/const-suggest-feature.rs:5:13
|
2020-05-04 21:33:10 +00:00
|
|
|
|
|
2024-08-26 12:51:16 +00:00
|
|
|
LL | let x = async { 13 };
|
|
|
|
| ^^^^^^^^^^^^
|
2020-05-04 21:33:10 +00:00
|
|
|
|
|
2024-08-26 12:51:16 +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
|
2020-05-04 21:33:10 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-05-04 21:33:10 +00:00
|
|
|
|
2020-09-30 00:31:04 +00:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|