rust/src/test/compile-fail/import-glob-circular.rs

26 lines
400 B
Rust
Raw Normal View History

// error-pattern: unresolved
mod circ1 {
2011-07-27 07:19:39 -05:00
import circ1::*;
export f1;
export f2;
export common;
2012-08-22 19:24:52 -05:00
fn f1() { debug!("f1"); }
2012-08-01 19:30:05 -05:00
fn common() -> uint { return 0u; }
}
mod circ2 {
2011-07-27 07:19:39 -05:00
import circ2::*;
export f1;
export f2;
export common;
2012-08-22 19:24:52 -05:00
fn f2() { debug!("f2"); }
2012-08-01 19:30:05 -05:00
fn common() -> uint { return 1u; }
}
mod test {
2011-07-27 07:19:39 -05:00
import circ1::*;
2011-07-27 07:19:39 -05:00
fn test() { f1066(); }
}