rust/src/test/run-pass/export-non-interference2.rs

12 lines
128 B
Rust
Raw Normal View History

mod foo {
2011-04-24 18:40:01 -05:00
2011-07-27 07:19:39 -05:00
export bar;
2011-04-24 18:40:01 -05:00
2011-07-27 07:19:39 -05:00
mod bar {
fn y() { x(); }
2011-04-24 18:40:01 -05:00
}
2011-07-27 07:19:39 -05:00
fn x() { log "x"; }
2011-04-24 18:40:01 -05:00
}
2011-07-27 07:19:39 -05:00
fn main() { foo::bar::y(); }