mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
21 lines
458 B
Rust
21 lines
458 B
Rust
#![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
|
|
}
|
|
}
|