about summary refs log tree commit diff
path: root/tests/ui/impl-trait/in-trait/default-body.rs
blob: 5674507ad12ca6a5dcbe6c278cbde63351dc0f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//@ check-pass
//@ edition:2021

use std::fmt::Debug;

trait Foo {
    #[allow(async_fn_in_trait)]
    async fn baz(&self) -> &str {
        ""
    }
}

struct Bar;

impl Foo for Bar {}

fn main() {
    let _ = Bar.baz();
}