11 lines
92 B
Rust
11 lines
92 B
Rust
// error-pattern:import
|
|
|
|
import y::x;
|
|
|
|
mod y {
|
|
import x;
|
|
export x;
|
|
}
|
|
|
|
fn main() { }
|