rust/src/test/ui/chalkify/lower_impl.rs

18 lines
242 B
Rust

// check-pass
// compile-flags: -Z chalk
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() {
}