rust/tests/ui/async-await/bound-normalization.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
158 B
Rust
Raw Normal View History

2019-07-04 04:20:16 +08:00
//@ check-pass
//@ edition:2018
// See issue 60414
trait Trait {
type Assoc;
}
async fn foo<T: Trait<Assoc=()>>() -> T::Assoc {
()
}
fn main() {}