mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
this ice now requires -Zvalidate-mir
also slightly minimized the test
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
//@ known-bug: #120016
|
||||
//@ compile-flags: -Zcrate-attr=feature(const_async_blocks)
|
||||
//@ compile-flags: -Zvalidate-mir
|
||||
//@ edition: 2021
|
||||
|
||||
#![feature(type_alias_impl_trait, const_async_blocks)]
|
||||
#![feature(type_alias_impl_trait)]
|
||||
|
||||
struct Bug {
|
||||
V1: [(); {
|
||||
type F = impl std::future::Future<Output = impl Sized>;
|
||||
type F = impl Sized;
|
||||
#[define_opaque(F)]
|
||||
fn concrete_use() -> F {
|
||||
//~^ ERROR to be a future that resolves to `u8`, but it resolves to `()`
|
||||
async {}
|
||||
//~^ ERROR
|
||||
1i32
|
||||
}
|
||||
let f: F = async { 1 };
|
||||
//~^ ERROR `async` blocks are not allowed in constants
|
||||
let f: F = 0u32;
|
||||
|
||||
1
|
||||
}],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user