Sign in
rust
/
rust
/
9b1f20d20dc00a950f99a00a34be9d2ca78d1f0d
/
.
/
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
()
{}