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

31 lines
673 B
Rust
Raw Normal View History

2011-05-23 20:52:55 -05:00
import module_of_many_things::*;
import dug::too::greedily::and::too::deep::*;
mod module_of_many_things {
2011-07-27 07:19:39 -05: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 20:52:55 -05:00
}
mod dug {
2011-07-27 07:19:39 -05:00
mod too {
mod greedily {
mod and {
mod too {
mod deep {
fn nameless_fear() { #debug("Boo!"); }
fn also_redstone() { #debug("Whatever."); }
2011-07-27 07:19:39 -05:00
}
}
2011-05-23 20:52:55 -05:00
}
}
}
}
fn main() { f1(); f2(); f4(); nameless_fear(); also_redstone(); }