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-05-25 12:10:30 -05:00
|
|
|
export f1;
|
|
|
|
export f2;
|
|
|
|
export f4;
|
|
|
|
|
2011-05-23 20:52:55 -05:00
|
|
|
fn f1() {
|
|
|
|
log "f1";
|
|
|
|
}
|
|
|
|
fn f2() {
|
|
|
|
log "f2";
|
|
|
|
}
|
|
|
|
fn f3() {
|
|
|
|
log "f3";
|
|
|
|
}
|
|
|
|
fn f4() {
|
|
|
|
log "f4";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
f1();
|
|
|
|
f2();
|
2011-05-25 12:10:30 -05:00
|
|
|
f999(); // 'export' currently doesn't work?
|
2011-05-23 20:52:55 -05:00
|
|
|
f4();
|
|
|
|
}
|