2024-01-26 17:33:42 +00:00
|
|
|
//@ edition:2018
|
|
|
|
|
2024-11-04 19:29:02 +00:00
|
|
|
#![feature(async_trait_bounds)]
|
2024-01-26 17:33:42 +00:00
|
|
|
|
|
|
|
trait Foo {}
|
|
|
|
|
|
|
|
fn test(x: impl async Foo) {}
|
|
|
|
//~^ ERROR `async` bound modifier only allowed on `Fn`/`FnMut`/`FnOnce` traits
|
|
|
|
|
|
|
|
fn main() {}
|