rust/tests/ui/consts/const-suggest-feature.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
554 B
Plaintext
Raw Normal View History

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
|
2024-08-26 12:51:16 +00:00
LL | let x = async { 13 };
| ^^^^^^^^^^^^
|
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
error: aborting due to 1 previous error
2020-09-30 00:31:04 +00:00
For more information about this error, try `rustc --explain E0658`.