-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 region: LUB(ReErased, ReEmpty(U22)) #75883
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
LeCyberDucky
added
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
labels
Aug 24, 2020
jonas-schievink
added
A-lifetimes
Area: Lifetimes / regions
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
labels
Aug 24, 2020
csmoe
added
the
E-needs-mcve
Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example
label
Aug 25, 2020
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.
rustbot
removed
the
E-needs-mcve
Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example
label
Aug 25, 2020
Assigning |
spastorino
added
P-medium
Medium priority
and removed
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
labels
Aug 26, 2020
This ICEs since |
rustbot
added
the
regression-from-stable-to-stable
Performance or correctness regression from one stable version to another.
label
Dec 20, 2020
This issue has been fixed by #82494, marking as |
JohnTitor
added
the
E-needs-test
Call for participation: An issue has been fixed and does not reproduce, but no test has been added.
label
Feb 28, 2021
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```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in 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: