Rollup merge of #152711 - petrochenkov:globass, r=Kivooeo

resolve: Disable an assert that no longer holds

Fixes https://github.com/rust-lang/rust/issues/152606
Fixes https://github.com/rust-lang/rust/issues/152595
This commit is contained in:
Stuart Cook 2026-02-18 17:29:47 +11:00 committed by GitHub
commit 8f3bbc1f5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,14 @@
// Regression test for issue #152606.
//@ check-pass
mod outer {
mod inner {
use super::*; // should go before the ambiguous glob imports
}
use crate::*;
pub use crate::*;
}
fn main() {}