a856bccdc6
This reverts commit c4af6e92fb
.
Branch was burning...many, many unresolved imports.
14 lines
145 B
Rust
14 lines
145 B
Rust
// error-pattern:cyclic import
|
|
|
|
mod a {
|
|
import b::x;
|
|
export x;
|
|
}
|
|
|
|
mod b {
|
|
import a::x;
|
|
export x;
|
|
|
|
fn main() { let y = x; }
|
|
}
|