2024-02-22 06:10:29 -06:00
|
|
|
//@ edition:2021
|
2022-11-02 12:33:25 -05:00
|
|
|
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
pub trait Foo {
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has async_trait_sig/trait.Foo.html '//h4[@class="code-header"]' "async fn bar() -> i32"
|
2022-11-02 12:33:25 -05:00
|
|
|
async fn bar() -> i32;
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has async_trait_sig/trait.Foo.html '//h4[@class="code-header"]' "async fn baz() -> i32"
|
2022-11-02 12:33:25 -05:00
|
|
|
async fn baz() -> i32 {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|