2023-06-13 20:41:15 +00:00
|
|
|
// edition:2021
|
|
|
|
// run-rustfix
|
|
|
|
|
|
|
|
trait Trait {
|
2023-09-26 20:20:25 +00:00
|
|
|
#[allow(async_fn_in_trait)]
|
2023-06-13 20:41:15 +00:00
|
|
|
async fn foo();
|
|
|
|
|
2023-09-26 20:20:25 +00:00
|
|
|
#[allow(async_fn_in_trait)]
|
2023-06-13 20:41:15 +00:00
|
|
|
async fn bar() -> i32;
|
|
|
|
|
|
|
|
fn test(&self) -> impl Sized + '_;
|
2023-06-21 01:57:26 +00:00
|
|
|
|
2023-09-26 20:20:25 +00:00
|
|
|
#[allow(async_fn_in_trait)]
|
2023-06-21 01:57:26 +00:00
|
|
|
async fn baz(&self) -> &i32;
|
2023-06-13 20:41:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct S;
|
|
|
|
|
|
|
|
impl Trait for S {}
|
|
|
|
//~^ ERROR not all trait items implemented
|
|
|
|
|
|
|
|
fn main() {}
|