summary refs log tree commit diff
path: root/src/test/ui/issues/issue-56128.rs
blob: 3a3eccdc33ce8f63e90b516e39f20b1c40568724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Regression test for #56128. When this `pub(super) use...` gets
// exploded in the HIR, we were not handling ids correctly.
//
// compile-pass

mod bar {
    pub(super) use self::baz::{x, y};

    mod baz {
        pub fn x() { }
        pub fn y() { }
    }
}

fn main() { }