mirror of
https://github.com/archtechx/todo-system.git
synced 2025-12-12 09:04:03 +00:00
7 lines
148 B
Rust
7 lines
148 B
Rust
fn foo() {
|
|
// Rust TODOs can only be generic
|
|
todo!("generic");
|
|
todo!();
|
|
todo!("@foo not category");
|
|
todo!("00 not priority");
|
|
}
|