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