mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
12 lines
111 B
Rust
12 lines
111 B
Rust
use macros::repeat;
|
|
|
|
#[repeat(3)]
|
|
fn foo() {}
|
|
|
|
#[repeat(2)]
|
|
#[repeat(3)]
|
|
fn bar() {}
|
|
|
|
#[repeat(0)]
|
|
fn baz() {}
|