2022-11-18 20:32:55 -06:00
|
|
|
// edition:2021
|
2023-03-07 10:44:14 -06:00
|
|
|
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
|
|
|
|
// revisions: current next
|
2022-11-18 20:32:55 -06:00
|
|
|
|
|
|
|
#![feature(async_fn_in_trait)]
|
|
|
|
//~^ WARN the feature `async_fn_in_trait` is incomplete and may not be safe to use and/or cause compiler crashes
|
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
async fn foo(&self);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x: &dyn Foo = todo!();
|
|
|
|
//~^ ERROR the trait `Foo` cannot be made into an object
|
|
|
|
}
|