2016-03-25 04:42:27 -05:00
|
|
|
#![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;
|
|
|
|
|
2016-03-26 00:57:03 -05:00
|
|
|
(u8_max as u32) > 300; //~ERROR because of the numeric bounds on `u8_max` prior to casting, this expression is always false
|
2016-03-25 04:42:27 -05:00
|
|
|
(u8_max as u32) > 20;
|
|
|
|
|
2016-03-26 00:57:03 -05:00
|
|
|
(zero as i32) < -5; //~ERROR because of the numeric bounds on `zero` prior to casting, this expression is always false
|
2016-03-25 04:42:27 -05:00
|
|
|
(zero as i32) < 10;
|
2016-03-25 17:47:27 -05:00
|
|
|
|
2016-03-26 00:57:03 -05:00
|
|
|
-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
|
2016-03-25 17:47:27 -05:00
|
|
|
0 < (zero as i32);
|
2016-03-28 23:44:18 -05:00
|
|
|
|
|
|
|
-5 > (zero as i32); //~ERROR because of the numeric bounds on `zero` prior to casting, this expression is always false
|
|
|
|
-5 >= (u8_max as i32); //~ERROR because of the numeric bounds on `u8_max` prior to casting, this expression is always false
|
2016-03-29 00:08:58 -05:00
|
|
|
|
|
|
|
-5 == (zero as i32); //~ERROR because of the numeric bounds on `zero` prior to casting, this expression is always false
|
|
|
|
-5 != (u8_max as i32); //~ERROR because of the numeric bounds on `u8_max` prior to casting, this expression is always true
|
2016-03-25 04:42:27 -05:00
|
|
|
}
|