mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-11 15:23:05 +00:00
8 lines
71 B
Rust
8 lines
71 B
Rust
// error-pattern:cyclic import
|
|
|
|
import x;
|
|
|
|
fn main() {
|
|
auto y = x;
|
|
}
|