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

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

20 lines
545 B
Rust
Raw Normal View History

// gate-test-const_async_blocks
2020-10-01 12:07:15 -05:00
//@ edition:2018
//@ 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
// 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 };
//[without_feature]~^ `async` block
static _FUT: &(dyn Future<Output = ()> + Sync) = &async {};
//[without_feature]~^ `async` block
2020-10-01 12:07:15 -05:00
#[rustc_error]
fn main() {} //[with_feature]~ fatal error triggered by #[rustc_error]