Files
codeql/rust/ql/test/library-tests/path-resolution/my2/nested2.rs
2025-01-31 10:07:10 +01:00

12 lines
253 B
Rust

pub mod nested3 {
pub mod nested4 {
pub fn f() {
println!("nested2.rs::nested3::nested4::f");
} // I12
pub fn g() {
println!("nested2.rs::nested3::nested4::g");
} // I13
} // I11
} // I10