mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01:00
12 lines
253 B
Rust
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
|