2011-06-15 13:19:50 -05:00
|
|
|
|
2011-05-12 10:24:54 -05:00
|
|
|
import foo::x;
|
|
|
|
import z = foo::x;
|
2011-01-28 10:54:59 -06:00
|
|
|
|
|
|
|
mod foo {
|
2011-12-22 16:42:52 -06:00
|
|
|
fn x(y: int) { log_full(core::debug, y); }
|
2011-01-28 10:54:59 -06:00
|
|
|
}
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { x(10); z(10); }
|