resolve: Disable an assert that no longer holds

This commit is contained in:
Vadim Petrochenkov 2026-02-16 15:32:00 +03:00
parent fef627b1eb
commit b541f1b198
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() {}