2018-07-28 10:34:52 -05:00
|
|
|
#![feature(tool_lints)]
|
2017-09-18 05:47:33 -05:00
|
|
|
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::integer_arithmetic, clippy::float_arithmetic)]
|
|
|
|
#![allow(unused, clippy::shadow_reuse, clippy::shadow_unrelated, clippy::no_effect, clippy::unnecessary_operation)]
|
2016-04-29 21:01:47 -05:00
|
|
|
fn main() {
|
|
|
|
let i = 1i32;
|
2017-02-08 07:58:07 -06:00
|
|
|
1 + i;
|
|
|
|
i * 2;
|
|
|
|
1 %
|
2016-04-30 10:11:59 -05:00
|
|
|
i / 2; // no error, this is part of the expression in the preceding line
|
2017-02-08 07:58:07 -06:00
|
|
|
i - 2 + 2 - i;
|
|
|
|
-i;
|
2016-05-13 09:43:47 -05:00
|
|
|
|
2016-04-29 21:01:47 -05:00
|
|
|
i & 1; // no wrapping
|
2016-05-13 09:43:47 -05:00
|
|
|
i | 1;
|
2016-04-29 21:01:47 -05:00
|
|
|
i ^ 1;
|
|
|
|
i >> 1;
|
|
|
|
i << 1;
|
2016-05-13 09:43:47 -05:00
|
|
|
|
2016-04-29 21:01:47 -05:00
|
|
|
let f = 1.0f32;
|
2016-05-13 09:43:47 -05:00
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
f * 2.0;
|
2016-05-13 09:43:47 -05:00
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
1.0 + f;
|
|
|
|
f * 2.0;
|
|
|
|
f / 2.0;
|
|
|
|
f - 2.0 * 4.2;
|
|
|
|
-f;
|
2016-04-29 21:01:47 -05:00
|
|
|
}
|