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

use thing::*;

#[derive(Debug)]
pub enum Thing {
    Foo
}

mod tests {
    use super::*;

    fn test_thing() {
        let thing: crate::Thing = Thing::Foo;
    }
}

mod thing {
    pub enum Thing {
        Bar
    }
}

fn main() { }