rustc_lint_defs::builtinStatic UNUSED_UNSAFE
source pub static UNUSED_UNSAFE: &Lint
Expand description
The unused_unsafe
lint detects unnecessary use of an unsafe
block.
§Example
{{produces}}
§Explanation
If nothing within the block requires unsafe
, then remove the
unsafe
marker because it is not required and may cause confusion.