2011-05-12 21:45:29 +02:00
|
|
|
// error-pattern:cyclic import
|
2010-07-09 11:59:00 -07:00
|
|
|
|
|
|
|
mod a {
|
2011-05-12 17:24:54 +02:00
|
|
|
import b::x;
|
2011-05-31 18:24:06 -07:00
|
|
|
export x;
|
2010-07-09 11:59:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
mod b {
|
2011-05-12 17:24:54 +02:00
|
|
|
import a::x;
|
2011-05-31 18:24:06 -07:00
|
|
|
export x;
|
2010-07-09 11:59:00 -07:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
auto y = x;
|
|
|
|
}
|
|
|
|
}
|