rust-clippy/tests/compile-fail/unit_cmp.rs

21 lines
437 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(clippy)]
#![deny(unit_cmp)]
2015-09-10 06:51:14 +00:00
#[derive(PartialEq)]
pub struct ContainsUnit(()); // should be fine
fn main() {
// this is fine
if true == false {
}
// this warns
if { true; } == { false; } { //~ERROR ==-comparison of unit values detected. This will always be true
}
if { true; } > { false; } { //~ERROR >-comparison of unit values detected. This will always be false
}
}