You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pub trait A {
type Iter<'a>: B<'a, E = Self::E> where Self: 'a;
type E;
fn things<'a>(&'a mut self) -> Result<Self::Iter<'a>, Self::E>;
}
pub trait B<'a> {
type E;
}
thread 'rustc' panicked at rust_verify/src/lifetime_generate.rs:2292:17:
assertion failed: generic_bounds.len() == 0