mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-18 11:34:11 +00:00
18 lines
368 B
Rust
Executable File
18 lines
368 B
Rust
Executable File
#![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
|
|
}
|
|
}
|