14 lines
198 B
Rust
Raw Normal View History

2012-04-25 15:58:33 -07:00
#[no_core];
use core;
use zed(name = "core");
use bar(name = "core", vers = "0.2");
2010-12-24 17:03:46 -08:00
2012-04-25 15:58:33 -07:00
import core::str;
import x = zed::str;
2010-12-24 17:03:46 -08:00
mod baz {
2012-04-25 15:58:33 -07:00
import bar::str;
import x = core::str;
2010-12-24 17:03:46 -08:00
}
fn main() { }