rust/src/test/run-pass/use.rs

17 lines
275 B
Rust
Raw Normal View History

// xfail-test
2010-12-24 19:03:46 -06:00
use std;
use libc;
2010-12-24 19:03:46 -06:00
use zed(name = "std");
use bar(name = "std", vers = "0.1");
2010-12-24 19:03:46 -06:00
// FIXME: commented out since resolve doesn't know how to handle crates yet.
// import str;
// import x = str;
2010-12-24 19:03:46 -06:00
mod baz {
// import str;
// import x = str;
2010-12-24 22:25:02 -06:00
2010-12-24 19:03:46 -06:00
}
fn main() { }