Files
rust/tests/ui/consts/async-block.rs

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

19 lines
476 B
Rust
Raw Normal View History

// gate-test-const_async_blocks
2020-10-01 10:07:15 -07:00
//@ edition:2018
//@ revisions: with_feature without_feature
2025-03-30 00:39:55 +03:00
//@[with_feature] check-pass
#![cfg_attr(with_feature, feature(const_async_blocks))]
use std::future::Future;
2020-10-01 10:07:15 -07: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 };
//[without_feature]~^ `async` block
static _FUT: &(dyn Future<Output = ()> + Sync) = &async {};
//[without_feature]~^ `async` block
2020-10-01 10:07:15 -07:00
2025-03-30 00:39:55 +03:00
fn main() {}