Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lifetime-generate] Crash on assertion failure: generic_bounds.len() == 0 #1296

Open
zhengyao-lin opened this issue Oct 2, 2024 · 0 comments

Comments

@zhengyao-lin
Copy link
Contributor

I was trying to define some traits similar to an iterator, but encountered this isssue (https://play.verus-lang.org/?version=stable&mode=basic&edition=2021&gist=ff5d6a560097dc550a07be84b688629a)

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

I think it's probably due to the bound Self: 'a?

@tjhance tjhance changed the title Crash on assertion failure: generic_bounds.len() == 0 [lifetime-generate] Crash on assertion failure: generic_bounds.len() == 0 Nov 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant