mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
181 B
Rust
16 lines
181 B
Rust
mod moon {
|
|
pub fn foo() {}
|
|
}
|
|
|
|
mod earth {
|
|
pub fn foo() {}
|
|
}
|
|
|
|
mod collider {
|
|
pub use moon::*;
|
|
pub use earth::*;
|
|
}
|
|
|
|
fn main() {
|
|
collider::foo(); //~ ERROR E0659
|
|
}
|