mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
18 lines
368 B
Rust
18 lines
368 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(clippy)]
|
||
|
|
||
|
#![deny(unit_cmp)]
|
||
|
|
||
|
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
|
||
|
}
|
||
|
}
|