granite-rust/tests/ui/impl-trait/in-trait/suggest-missing-item.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
525 B
Rust
Raw Permalink Normal View History

//@ edition:2021
//@ run-rustfix
2024-02-07 10:42:01 +08:00
#![allow(dead_code)]
trait Trait {
2023-09-26 20:20:25 +00:00
#[allow(async_fn_in_trait)]
async fn foo();
2023-09-26 20:20:25 +00:00
#[allow(async_fn_in_trait)]
async fn bar() -> i32;
fn test(&self) -> impl Sized + '_;
2023-09-26 20:20:25 +00:00
#[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() {}