mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-18 19:58:19 +00:00
17 lines
195 B
Rust
17 lines
195 B
Rust
mod moon {
|
|
pub fn foo() {}
|
|
}
|
|
|
|
mod earth {
|
|
pub fn foo() {}
|
|
}
|
|
|
|
mod collider {
|
|
pub use crate::moon::*;
|
|
pub use crate::earth::*;
|
|
}
|
|
|
|
fn main() {
|
|
collider::foo(); //~ ERROR E0659
|
|
}
|