mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
18 lines
306 B
Rust
18 lines
306 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;
|
|
|
|
#[path = "renamed.rs"]
|
|
mod mymod;
|
|
|
|
use mymod::f; // $ item=I1001
|