22 lines
488 B
Rust
22 lines
488 B
Rust
|
// edition:2018
|
||
|
|
||
|
#![feature(type_alias_impl_trait)]
|
||
|
#![feature(impl_trait_in_bindings)]
|
||
|
//~^ WARN the feature `impl_trait_in_bindings` is incomplete
|
||
|
|
||
|
type F = impl core::future::Future<Output = u8>;
|
||
|
|
||
|
struct Bug {
|
||
|
V1: [(); {
|
||
|
fn concrete_use() -> F {
|
||
|
async {}
|
||
|
}
|
||
|
let f: F = async { 1 };
|
||
|
//~^ ERROR `async` blocks are not allowed in constants
|
||
|
//~| ERROR destructors cannot be evaluated at compile-time
|
||
|
1
|
||
|
}],
|
||
|
}
|
||
|
|
||
|
fn main() {}
|