1
0
Fork 0
mirror of https://github.com/archtechx/todo-system.git synced 2025-12-12 00:54:03 +00:00

support scanning todo!() Rust macros

This commit is contained in:
Samuel Štancl 2023-12-11 11:09:02 +01:00
parent a9a6a66b96
commit b4a74cb633
2 changed files with 70 additions and 0 deletions

7
samples/2.rs Normal file
View file

@ -0,0 +1,7 @@
fn foo() {
// Rust TODOs can only be generic
todo!("generic");
todo!();
todo!("@foo not category");
todo!("00 not priority");
}