summaryrefslogtreecommitdiffstats
path: root/src/test/ui/underscore-imports/cycle.rs
blob: bacf9b2d5a96a326f61b4c780d005e3de27b7f7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Check that cyclic glob imports are allowed with underscore imports

// check-pass

mod x {
    pub use crate::y::*;
    pub use std::ops::Deref as _;
}

mod y {
    pub use crate::x::*;
    pub use std::ops::Deref as _;
}

pub fn main() {
    use x::*;
    (&0).deref();
}