pub static UNREACHABLE_CODE: &'static Lint
The unreachable_code lint detects unreachable code paths.
unreachable_code
panic!("we never go past here!"); let x = 5;
{{produces}}
Unreachable code may signal a mistake or unfinished code. If the code is no longer in use, consider removing it.