summary refs log tree commit diff
path: root/src/test/run-pass/import5.rs
blob: ba711639091227bc665fc231c9a1a5f61ba5ad84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use foo::bar;
mod foo {
    #[legacy_exports];
    use zed::bar;
    export bar;
    mod zed {
        #[legacy_exports];
        fn bar() { debug!("foo"); }
    }
}

fn main() { bar(); }