blob: cff1d24494e8392a4163bbee65c7c436b213cd2c [file] [log] [blame]
// Tests that we still detect defining usages when
// lifetimes are used in an associated opaque type
// check-pass
#![feature(type_alias_impl_trait)]
trait UnwrapItemsExt {
type Iter;
fn unwrap_items(self) -> Self::Iter;
}
struct MyStruct {}
trait MyTrait<'a> {}
impl<'a> MyTrait<'a> for MyStruct {}
impl<'a, I> UnwrapItemsExt for I
where
{
type Iter = impl MyTrait<'a>;
fn unwrap_items(self) -> Self::Iter {
MyStruct {}
}
}
fn main() {}