Files
rust/clippy_tests/examples/unit_cmp.rs
2017-05-17 14:19:44 +02:00

22 lines
333 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![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; } {
}
}