2011-05-25 12:10:30 -05:00
|
|
|
// error-pattern: unresolved name
|
|
|
|
|
|
|
|
import module_of_many_things::*;
|
|
|
|
|
2011-05-23 20:52:55 -05:00
|
|
|
mod module_of_many_things {
|
2011-07-27 07:19:39 -05:00
|
|
|
export f1;
|
|
|
|
export f2;
|
|
|
|
export f4;
|
2011-05-25 12:10:30 -05:00
|
|
|
|
2011-12-22 16:42:52 -06:00
|
|
|
fn f1() { #debug("f1"); }
|
|
|
|
fn f2() { #debug("f2"); }
|
|
|
|
fn f3() { #debug("f3"); }
|
|
|
|
fn f4() { #debug("f4"); }
|
2011-05-23 20:52:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 07:19:39 -05:00
|
|
|
f1();
|
|
|
|
f2();
|
|
|
|
f999(); // 'export' currently doesn't work?
|
|
|
|
f4();
|
2011-08-19 17:16:48 -05:00
|
|
|
}
|