summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/import-after-macro-expand-6.rs
blob: bff8efebca62e7ba97bf4274253f9c81f2737ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// check-pass
// https://github.com/rust-lang/rust/pull/113099#issuecomment-1633574396

pub mod a {
    pub use crate::b::*;
}

mod b {
    pub mod http {
        pub struct HeaderMap;
    }

    pub use self::http::*;
    #[derive(Debug)]
    pub struct HeaderMap;
}

use crate::a::HeaderMap;

fn main() {
    let h: crate::b::HeaderMap = HeaderMap;
}