-
Notifications
You must be signed in to change notification settings - Fork 13.3k
cannot relate region: LUB(ReErased, ReEmpty(U22)) #75883
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Labels
A-lifetimes
Area: Lifetimes / regions
C-bug
Category: This is a bug.
E-needs-test
Call for participation: An issue has been fixed and does not reproduce, but no test has been added.
glacier
ICE tracked in rust-lang/glacier.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
P-medium
Medium priority
regression-from-stable-to-stable
Performance or correctness regression from one stable version to another.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
reduced: pub struct UI {}
impl UI {
pub fn run() -> Result<_> {
let mut ui = UI {};
ui.interact();
unimplemented!();
}
pub fn interact(&mut self) -> Result<_> {
unimplemented!();
}
} |
This comment has been minimized.
This comment has been minimized.
Assigning |
This ICEs since |
This issue has been fixed by #82494, marking as |
JohnTitor
added a commit
to JohnTitor/rust
that referenced
this issue
Apr 28, 2021
m-ou-se
added a commit
to m-ou-se/rust
that referenced
this issue
Apr 28, 2021
…tests, r=Dylan-DPC Add some regression tests related to rust-lang#82494 Closes rust-lang#75883, closes rust-lang#80779 r? `@estebank`
jackh726
added a commit
to jackh726/rust
that referenced
this issue
Apr 28, 2021
…tests, r=Dylan-DPC Add some regression tests related to rust-lang#82494 Closes rust-lang#75883, closes rust-lang#80779 r? ``@estebank``
jackh726
added a commit
to jackh726/rust
that referenced
this issue
Apr 29, 2021
…tests, r=Dylan-DPC Add some regression tests related to rust-lang#82494 Closes rust-lang#75883, closes rust-lang#80779 r? ```@estebank```
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Labels
A-lifetimes
Area: Lifetimes / regions
C-bug
Category: This is a bug.
E-needs-test
Call for participation: An issue has been fixed and does not reproduce, but no test has been added.
glacier
ICE tracked in rust-lang/glacier.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
P-medium
Medium priority
regression-from-stable-to-stable
Performance or correctness regression from one stable version to another.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Hi, it appears that I've stumbled upon an internal compiler error.
Code
I'm sorry that I can't provide a minimal example, but I'm not on a level to understand what is going on (at least for now, heh :P). I'm just here, because the compiler told me to go here. I have, however, pushed a commit of my project in the state that yields the error: https://github.com/LeCyberDucky/bitgeon/tree/Error-handling
The error occurs when running
cargo check --bin main
orcargo +nightly check --bin main
, for that matter.Meta
rustc --version --verbose
:Also happens on nightly:
Error output
Backtrace
I hope this helps. Please tell me, if there's more you need me to do. 🦀
The text was updated successfully, but these errors were encountered: