mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-23 21:23:20 +00:00
20 lines
747 B
Rust
20 lines
747 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#![deny(invalid_upcast_comparisons)]
|
|
#![allow(unused, eq_op, no_effect)]
|
|
fn main() {
|
|
let zero: u32 = 0;
|
|
let u8_max: u8 = 255;
|
|
|
|
(u8_max as u32) > 300; //~ERROR because of the numeric bounds on `u8_max` prior to casting, this expression is always false
|
|
(u8_max as u32) > 20;
|
|
|
|
(zero as i32) < -5; //~ERROR because of the numeric bounds on `zero` prior to casting, this expression is always false
|
|
(zero as i32) < 10;
|
|
|
|
-5 < (zero as i32); //~ERROR because of the numeric bounds on `zero` prior to casting, this expression is always true
|
|
0 <= (zero as i32); //~ERROR because of the numeric bounds on `zero` prior to casting, this expression is always true
|
|
0 < (zero as i32);
|
|
}
|