-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Cannot relate bound region: ReInfer(53) <= ReLateBound(284, ... #10841
Comments
Dup #5121 |
�Forward-ported example to run on version Then reduced it down to the following, which still ICE's: trait Foo<'r> { fn foo(&'r self); }
impl<'r> Foo<'r> for () { fn foo(&'r self) { fail!("placeholder"); } }
fn check<'a, F: Foo<'a>>(cont: &'a F) { cont.foo(); }
fn main() { check(()); }
(but its still a dupe of #5121. I'm just noting this because I am trying to double-check which dupes of #5121 are still reproducible.) |
13 tasks
flip1995
pushed a commit
to flip1995/rust
that referenced
this issue
Jun 2, 2023
Changelog for Rust 1.70 🔨 Roses are red, violets are blue, damn I have an exam to cram, and this rhyme is a scam --- This poem is... certainly something... Anyways, hope whoever is reading this, has a lovely day full of sunshine without the need to study :D --- changelog: none
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was trying out Rust with a sudoku solver and met a bug
It's the git version (compiled two hours ago) running on i686 ArchLinux, this is the -v output:
Compiler output, backtrace and the file I was compiling: https://gist.github.com/xcv-/c0a79259a7b1280578e5
The text was updated successfully, but these errors were encountered: