Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
async-await
/
bound-normalization.rs
blob: 5d260682f1d8163ea34a9030e7ea041fcfc56fed [
file
] [
log
] [
blame
]
// check-pass
// edition:2018
// See issue 60414
trait
Trait
{
type
Assoc
;
}
async
fn
foo
<
T
:
Trait
<
Assoc
=()>>()
->
T
::
Assoc
{
()
}
fn
main
()
{}