rust/src/test/run-pass/import-glob-0.rs

31 lines
673 B
Rust
Raw Normal View History

2011-05-23 18:52:55 -07:00
import module_of_many_things::*;
import dug::too::greedily::and::too::deep::*;
mod module_of_many_things {
2011-07-27 14:19:39 +02:00
export f1;
export f2;
export f4;
fn f1() { debug!{"f1"}; }
fn f2() { debug!{"f2"}; }
fn f3() { debug!{"f3"}; }
fn f4() { debug!{"f4"}; }
2011-05-23 18:52:55 -07:00
}
mod dug {
2011-07-27 14:19:39 +02:00
mod too {
mod greedily {
mod and {
mod too {
mod deep {
fn nameless_fear() { debug!{"Boo!"}; }
fn also_redstone() { debug!{"Whatever."}; }
2011-07-27 14:19:39 +02:00
}
}
2011-05-23 18:52:55 -07:00
}
}
}
}
fn main() { f1(); f2(); f4(); nameless_fear(); also_redstone(); }