Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
in-trait
/
default-body-with-rpit.rs
blob: c1a78bc23885c5eb988810efd233ddd93db606d3 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2021
//@ check-pass
use
std
::
fmt
::
Debug
;
trait
Foo
{
#[
allow
(
async_fn_in_trait
)]
async
fn
baz
(&
self
)
->
impl
Debug
{
""
}
}
struct
Bar
;
impl
Foo
for
Bar
{}
fn
main
()
{
let
_
=
Bar
.
baz
();
}