Files
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 14:51:16 +02:00
error[E0658]: `async` blocks are not allowed in constants
2024-08-17 14:19:34 +02:00
--> $DIR/const-suggest-feature.rs:5:13
|
2024-08-26 14:51:16 +02:00
LL | let x = async { 13 };
| ^^^^^^^^^^^^
|
2024-08-26 14:51:16 +02: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 01:39:02 -05: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-29 17:31:04 -07:00
For more information about this error, try `rustc --explain E0658`.