7 lines
89 B
Rust
7 lines
89 B
Rust
use y::x;
|
|
|
|
mod y {
|
|
pub use y::x; //~ ERROR unresolved import `y::x`
|
|
}
|
|
|
|
fn main() { }
|