mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
16 lines
160 B
Rust
16 lines
160 B
Rust
//@ run-pass
|
|
|
|
#![allow(dead_code)]
|
|
|
|
pub mod a {
|
|
pub fn f() {}
|
|
pub mod b {
|
|
fn g() {
|
|
super::f();
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
}
|