mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
27 lines
502 B
Rust
27 lines
502 B
Rust
// edition:2021
|
|
// run-rustfix
|
|
|
|
trait Trait {
|
|
#[allow(async_fn_in_trait)]
|
|
async fn foo();
|
|
|
|
#[allow(async_fn_in_trait)]
|
|
async fn bar() -> i32;
|
|
|
|
fn test(&self) -> impl Sized + '_;
|
|
|
|
#[allow(async_fn_in_trait)]
|
|
async fn baz(&self) -> &i32;
|
|
}
|
|
|
|
struct S;
|
|
|
|
impl Trait for S {async fn baz(&self) -> &i32 { todo!() }
|
|
fn test(&self) -> impl Sized + '_ { todo!() }
|
|
async fn bar() -> i32 { todo!() }
|
|
async fn foo() { todo!() }
|
|
}
|
|
//~^ ERROR not all trait items implemented
|
|
|
|
fn main() {}
|