summary refs log tree commit diff
path: root/src/test/run-pass/use.rs
blob: 10c9fcae8e74d305d6d32452f079a6ab0e4530ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[no_core];
extern mod core;
extern mod zed(name = "core");
extern mod bar(name = "core", vers = "0.4");


use core::str;
use x = zed::str;
mod baz {
    #[legacy_exports];
    use bar::str;
    use x = core::str;
}

fn main() { }