rust/tests/ui-toml/absolute_paths/auxiliary/helper.rs

12 lines
149 B
Rust
Raw Normal View History

2023-06-21 21:15:20 -05:00
pub fn a() {}
pub mod b {
pub mod c {
pub mod d {
pub mod e {
pub fn f() {}
}
}
}
}