2011-05-25 10:10:30 -07:00
|
|
|
// error-pattern: unresolved name
|
|
|
|
|
2012-09-05 12:32:05 -07:00
|
|
|
use module_of_many_things::*;
|
2011-05-25 10:10:30 -07:00
|
|
|
|
2011-05-23 18:52:55 -07:00
|
|
|
mod module_of_many_things {
|
2012-09-21 18:10:45 -07:00
|
|
|
#[legacy_exports];
|
2011-07-27 14:19:39 +02:00
|
|
|
export f1;
|
|
|
|
export f2;
|
|
|
|
export f4;
|
2011-05-25 10:10:30 -07:00
|
|
|
|
2012-08-22 17:24:52 -07:00
|
|
|
fn f1() { debug!("f1"); }
|
|
|
|
fn f2() { debug!("f2"); }
|
|
|
|
fn f3() { debug!("f3"); }
|
|
|
|
fn f4() { debug!("f4"); }
|
2011-05-23 18:52:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 14:19:39 +02:00
|
|
|
f1();
|
|
|
|
f2();
|
|
|
|
f999(); // 'export' currently doesn't work?
|
|
|
|
f4();
|
2011-08-19 15:16:48 -07:00
|
|
|
}
|