8 lines
71 B
Rust
8 lines
71 B
Rust
// error-pattern:cyclic import
|
|
|
|
import x;
|
|
|
|
fn main() {
|
|
auto y = x;
|
|
}
|