2011-06-30 15:19:47 -07:00
|
|
|
mod foo {
|
2012-09-21 18:10:45 -07:00
|
|
|
#[legacy_exports];
|
2011-04-24 19:40:01 -04:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
export bar;
|
2011-04-24 19:40:01 -04:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
mod bar {
|
2012-09-21 18:10:45 -07:00
|
|
|
#[legacy_exports];
|
2011-07-27 14:19:39 +02:00
|
|
|
fn y() { x(); }
|
2011-04-24 19:40:01 -04:00
|
|
|
}
|
2011-06-30 15:19:47 -07:00
|
|
|
|
2012-08-22 17:24:52 -07:00
|
|
|
fn x() { debug!("x"); }
|
2011-04-24 19:40:01 -04:00
|
|
|
}
|
|
|
|
|
2011-08-19 15:16:48 -07:00
|
|
|
fn main() { foo::bar::y(); }
|