2021-05-16 02:04:58 +02:00
|
|
|
// gate-test-const_async_blocks
|
2020-10-01 10:07:15 -07:00
|
|
|
|
|
|
|
|
//@ edition:2018
|
2021-05-16 02:04:58 +02:00
|
|
|
//@ revisions: with_feature without_feature
|
2025-03-30 00:39:55 +03:00
|
|
|
//@[with_feature] check-pass
|
2021-05-16 02:04:58 +02:00
|
|
|
|
|
|
|
|
#![cfg_attr(with_feature, feature(const_async_blocks))]
|
|
|
|
|
|
|
|
|
|
use std::future::Future;
|
2020-10-01 10:07:15 -07:00
|
|
|
|
2021-05-16 02:04:58 +02:00
|
|
|
// From <https://github.com/rust-lang/rust/issues/77361>
|
2020-10-01 10:07:15 -07:00
|
|
|
const _: i32 = { core::mem::ManuallyDrop::new(async { 0 }); 4 };
|
2025-04-05 19:19:56 +03:00
|
|
|
//[without_feature]~^ ERROR `async` block
|
2021-05-16 02:04:58 +02:00
|
|
|
|
|
|
|
|
static _FUT: &(dyn Future<Output = ()> + Sync) = &async {};
|
2025-04-05 19:19:56 +03:00
|
|
|
//[without_feature]~^ ERROR `async` block
|
2020-10-01 10:07:15 -07:00
|
|
|
|
2025-03-30 00:39:55 +03:00
|
|
|
fn main() {}
|