mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
172 B
Rust
13 lines
172 B
Rust
pub mod nested; // I37
|
|
|
|
use nested::g; // $ item=I7
|
|
|
|
pub fn f() {
|
|
println!("my.rs::f");
|
|
} // I38
|
|
|
|
pub fn h() {
|
|
println!("my.rs::h");
|
|
g(); // $ item=I7
|
|
} // I39
|