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

13 lines
128 B
Rust
Raw Normal View History

mod foo {
2011-07-27 07:19:39 -05:00
export x;
2011-07-27 07:19:39 -05:00
fn x() { bar::x(); }
2011-04-24 18:40:01 -05:00
}
mod bar {
2011-07-27 07:19:39 -05:00
export x;
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::x(); }