rust/tests/compile-fail/unit_cmp.rs
2015-10-29 15:50:35 +09:00

22 lines
458 B
Rust
Executable file

#![feature(plugin)]
#![plugin(clippy)]
#![deny(unit_cmp)]
#![allow(no_effect)]
#[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
}
}