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