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

fn main(args: ~[str]) { bar(); }