Files
codeql/rust/ql/integration-tests/macro-expansion/src/lib.rs
2025-05-14 10:01:44 +02:00

12 lines
111 B
Rust

use macros::repeat;
#[repeat(3)]
fn foo() {}
#[repeat(2)]
#[repeat(3)]
fn bar() {}
#[repeat(0)]
fn baz() {}