-
Notifications
You must be signed in to change notification settings - Fork 13k
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
regression: no variant found in current scope #117053
Labels
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Milestone
Comments
Mark-Simulacrum
added
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
E-needs-bisection
Call for participation: This issue needs bisection: https://github.com/rust-lang/cargo-bisect-rustc
E-needs-mcve
Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example
labels
Oct 22, 2023
rustbot
added
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
labels
Oct 22, 2023
This was referenced Oct 22, 2023
Closed
searched nightlies: from nightly-2023-08-01 to nightly-2023-10-20 bisected with cargo-bisect-rustc v0.6.6Host triple: x86_64-unknown-linux-gnu cargo bisect-rustc 2023-08-01 --end 2023-10-20 --access github --regress error |
reduced: mod api {
pub mod types {
pub mod common {
pub enum S {}
impl S {
pub fn a() {}
}
}
pub use common::S;
}
}
mod c {
pub mod types {
mod common {
pub use crate::api::types::*;
#[derive(Debug)]
pub enum S {}
impl S {
pub fn b() {}
}
}
pub use common::*;
}
}
use c::types::S;
fn main() {
S::a();
} This fix appears to be as expected. it's strange that the regression test doesn't reflect this. |
Mark-Simulacrum
removed
E-needs-bisection
Call for participation: This issue needs bisection: https://github.com/rust-lang/cargo-bisect-rustc
E-needs-mcve
Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example
labels
Oct 22, 2023
This issue can be resolved once RACE-Game/race#11 gets merged. |
apiraino
removed
I-prioritize
Issue: Indicates that prioritization has been requested for this issue.
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
labels
Oct 24, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
https://crater-reports.s3.amazonaws.com/beta-1.74-4/beta-2023-10-21/reg/race-client-0.2.2/log.txt
The text was updated successfully, but these errors were encountered: