-
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
Internal Compiler Error when compiling rocket = "0.5.0-rc.1" #93831
Labels
C-bug
Category: This is a bug.
P-critical
Critical priority
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
Huh... codegen should've revealed all opaque types, odd. Should be easy to fix if it's just a failure to reveal |
oli-obk
added
the
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
label
Feb 9, 2022
rustbot
added
the
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
label
Feb 9, 2022
apiraino
added
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
and removed
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
labels
Feb 9, 2022
Assigning priority as discussed in the Zulip thread of the Prioritization Working Group. @rustbot label -I-prioritize +P-critical |
rustbot
added
P-critical
Critical priority
and removed
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
labels
Feb 9, 2022
I made an MCVE use std::fmt::Debug;
pub struct EventStream<S> {
stream: S,
}
impl<S: Debug> EventStream<S> {
fn into_stream(self) -> impl Debug {
unimplemented!()
}
pub fn into_reader(self) -> impl Debug {
ReaderStream::from(self.into_stream())
}
}
#[derive(Debug)]
pub struct ReaderStream<S> {
stream: S,
}
impl<S> From<S> for ReaderStream<S> {
fn from(stream: S) -> Self {
ReaderStream { stream }
}
} |
fix is up in #93859 |
Merged
three people reacted with 🚀 in an issue using the Rocket framework.... boy do i love this community 😆 ! |
flip1995
pushed a commit
to flip1995/rust-clippy
that referenced
this issue
Feb 24, 2022
Revert lazy TAIT PR Revert rust-lang/rust#92306 (sorry `@Aaron1011,` will include your changes in the fix PR) Revert rust-lang/rust#93783 Revert rust-lang/rust#92007 fixes rust-lang/rust#93788 fixes rust-lang/rust#93794 fixes rust-lang/rust#93821 fixes rust-lang/rust#93831 fixes rust-lang/rust#93841
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
C-bug
Category: This is a bug.
P-critical
Critical priority
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Problem
When trying to build a project containing the rocket web framework, cargo fails with an internal compiler error. Below is the full error written to the console.
Steps
cargo new random
rocket = "0.5.0-rc.1"
cargo build
Possible Solution(s)
So far, the only solution I've found is to downgrade my version of nightly rust which'll compile the project just fine
Notes
No response
Version
The text was updated successfully, but these errors were encountered: