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:
commit
8f3bbc1f5a
2 changed files with 18 additions and 1 deletions
14
tests/ui/imports/overwrite-different-vis-3.rs
Normal file
14
tests/ui/imports/overwrite-different-vis-3.rs
Normal 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() {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue