2011-05-12 14:45:29 -05:00
|
|
|
// error-pattern:cyclic import
|
2010-07-09 13:59:00 -05:00
|
|
|
|
|
|
|
mod a {
|
2011-07-27 07:19:39 -05:00
|
|
|
import b::x;
|
|
|
|
export x;
|
2010-07-09 13:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mod b {
|
2011-07-27 07:19:39 -05:00
|
|
|
import a::x;
|
|
|
|
export x;
|
2010-07-09 13:59:00 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn main() { let y = x; }
|
|
|
|
}
|