mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
13 lines
347 B
Text
13 lines
347 B
Text
error: this `else` branch is empty
|
|
--> tests/ui/needless_else.rs:23:7
|
|
|
|
|
LL | } else {
|
|
| _______^
|
|
LL | | }
|
|
| |_____^ help: you can remove it
|
|
|
|
|
= note: `-D clippy::needless-else` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::needless_else)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|