mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
20 lines
282 B
Rust
20 lines
282 B
Rust
/**
|
|
* total lines in this file: 19
|
|
* of which code: 11
|
|
* of which only comments: 6
|
|
* of which blank: 2
|
|
*/
|
|
|
|
macro_rules! myMacro {
|
|
() => {
|
|
println!("Hello, world!");
|
|
};
|
|
}
|
|
|
|
pub fn my_func() {
|
|
if true {
|
|
myMacro!();
|
|
myUndefinedMacro!();
|
|
}
|
|
}
|