mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
13 lines
240 B
Rust
13 lines
240 B
Rust
pub mod nested2; // I8
|
|
|
|
fn g() {
|
|
println!("my2/mod.rs::g");
|
|
nested2::nested3::nested4::f(); // $ item=I12
|
|
} // I9
|
|
|
|
pub use nested2::nested5::*; // $ item=I114
|
|
|
|
pub use nested2::nested7::nested8::{self}; // $ item=I118
|
|
|
|
pub mod my3;
|