mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
21 lines
296 B
Rust
21 lines
296 B
Rust
|
|
|
|
|
|
#![warn(unit_cmp)]
|
|
#![allow(no_effect, unnecessary_operation)]
|
|
|
|
#[derive(PartialEq)]
|
|
pub struct ContainsUnit(()); // should be fine
|
|
|
|
fn main() {
|
|
// this is fine
|
|
if true == false {
|
|
}
|
|
|
|
// this warns
|
|
if { true; } == { false; } {
|
|
}
|
|
|
|
if { true; } > { false; } {
|
|
}
|
|
}
|