]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/async-block.without_feature.stderr
Do not suggest `let_else` if no bindings would be introduced
[rust.git] / src / test / ui / consts / async-block.without_feature.stderr
1 error[E0658]: `async` blocks are not allowed in constants
2   --> $DIR/async-block.rs:12:47
3    |
4 LL | const _: i32 = { core::mem::ManuallyDrop::new(async { 0 }); 4 };
5    |                                               ^^^^^^^^^^^
6    |
7    = note: see issue #85368 <https://github.com/rust-lang/rust/issues/85368> for more information
8    = help: add `#![feature(const_async_blocks)]` to the crate attributes to enable
9
10 error[E0658]: `async` blocks are not allowed in statics
11   --> $DIR/async-block.rs:15:51
12    |
13 LL | static _FUT: &(dyn Future<Output = ()> + Sync) = &async {};
14    |                                                   ^^^^^^^^
15    |
16    = note: see issue #85368 <https://github.com/rust-lang/rust/issues/85368> for more information
17    = help: add `#![feature(const_async_blocks)]` to the crate attributes to enable
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0658`.