mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
28 lines
575 B
Rust
28 lines
575 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
|
|
|
|
pub mod nested5 {
|
|
pub mod nested6 {
|
|
pub fn f() {
|
|
println!("nested2.rs::nested5::nested6::f");
|
|
} // I116
|
|
} // I115
|
|
} // I114
|
|
|
|
pub mod nested7 {
|
|
pub mod nested8 {
|
|
pub fn f() {
|
|
println!("nested2.rs::nested7::nested8::f");
|
|
} // I119
|
|
} // I118
|
|
} // I117
|