resolve: Disable an assert that no longer holds
This commit is contained in:
parent
fef627b1eb
commit
b541f1b198
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