Rust

Rust

Made by DeepSource

Found todo! macro RS-W1065

Anti-pattern
Minor

The presence of the todo! macro in code indicates an incomplete implementation. Consider revisiting this code.

Bad practice

fn f() -> u32 {
    todo!()
}