]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/use.rs
1d65a0a5e9e8c32276be1e78d43e8c26c8932226
[rust.git] / src / test / run-pass / use.rs
1 // ignore-fast
2
3 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 // ignore-fast
14
15 #[allow(unused_imports)];
16
17 #[no_std];
18 extern crate std;
19 extern crate zed = "std";
20 extern crate bar = "std#0.10-pre";
21
22
23 use std::str;
24 use x = zed::str;
25 mod baz {
26     pub use bar::str;
27     pub use x = std::str;
28 }
29
30 #[start]
31 pub fn start(_: int, _: **u8) -> int { 0 }