mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00

Prepare for rework done by the rest of RUST-142440. Co-authored-by: Kivooeo <Kivooeo123@gmail.com>
17 lines
125 B
Rust
17 lines
125 B
Rust
//@ run-pass
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
|
|
mod foo {
|
|
pub fn baz() { }
|
|
}
|
|
|
|
mod bar {
|
|
pub fn baz() { }
|
|
}
|
|
|
|
pub fn main() { }
|