Files
codeql/rust/ql/test/query-tests/diagnostics/main.rs
2024-10-02 16:52:19 +01:00

18 lines
252 B
Rust

/**
* total lines in this file: 18
* of which code: 8
* of which only comments: 6
* of which blank: 4
*/
mod my_struct;
mod my_macro;
mod comments;
fn main() {
println!("Hello, world!");
my_struct::my_func();
my_macro::my_func();
}