11 lines
112 B
Rust
11 lines
112 B
Rust
// error-pattern:import
|
|
|
|
use y::x;
|
|
|
|
mod y {
|
|
#[legacy_exports];
|
|
import x;
|
|
export x;
|
|
}
|
|
|
|
fn main() { }
|