2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2024-12-18 17:15:05 +00:00
rust-clippy/tests/ui-toml/absolute_paths/auxiliary/helper.rs

12 lines
149 B
Rust
Raw Normal View History

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