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

22 lines
371 B
Rust
Raw Normal View History

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