Sign in
rust
/
rust
/
4e2ede2c5bc2f8790ef28fdf43ebab3e2f5c80a0
/
.
/
tests
/
ui
/
coroutine
/
coroutine-in-orphaned-anon-const.rs
blob: c98ec1de17e39401bbf7fb229a52bc33aa7ef40e [
file
]
//@ edition:2021
trait
X
{
fn
test
()
->
Self
::
Assoc
<{
async
{}
}>;
//~^ ERROR associated type `Assoc` not found for `Self`
}
pub
fn
main
()
{}