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() {}