2020-03-03 10:25:03 -06:00
|
|
|
// check-pass
|
2023-01-02 17:18:00 -06:00
|
|
|
// compile-flags: -Z trait-solver=chalk
|
2020-03-03 10:25:03 -06:00
|
|
|
|
|
|
|
trait Foo { }
|
|
|
|
|
|
|
|
impl<T: 'static> Foo for T where T: Iterator<Item = i32> { }
|
|
|
|
|
|
|
|
trait Bar {
|
|
|
|
type Assoc;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Bar for T where T: Iterator<Item = i32> {
|
|
|
|
type Assoc = Vec<T>;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|