2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::integer_arithmetic, clippy::float_arithmetic)]
|
2018-12-09 22:26:16 +00:00
|
|
|
#![allow(
|
|
|
|
unused,
|
|
|
|
clippy::shadow_reuse,
|
|
|
|
clippy::shadow_unrelated,
|
|
|
|
clippy::no_effect,
|
|
|
|
clippy::unnecessary_operation
|
|
|
|
)]
|
2018-12-08 17:56:59 +00:00
|
|
|
|
|
|
|
#[rustfmt::skip]
|
2016-04-30 02:01:47 +00:00
|
|
|
fn main() {
|
|
|
|
let i = 1i32;
|
2017-02-08 13:58:07 +00:00
|
|
|
1 + i;
|
|
|
|
i * 2;
|
|
|
|
1 %
|
2016-04-30 15:11:59 +00:00
|
|
|
i / 2; // no error, this is part of the expression in the preceding line
|
2017-02-08 13:58:07 +00:00
|
|
|
i - 2 + 2 - i;
|
2019-01-20 13:18:31 +00:00
|
|
|
-i; // no error, overflows are checked by `overflowing_literals`
|
2016-05-13 14:43:47 +00:00
|
|
|
|
2016-04-30 02:01:47 +00:00
|
|
|
i & 1; // no wrapping
|
2016-05-13 14:43:47 +00:00
|
|
|
i | 1;
|
2016-04-30 02:01:47 +00:00
|
|
|
i ^ 1;
|
|
|
|
i >> 1;
|
|
|
|
i << 1;
|
2016-05-13 14:43:47 +00:00
|
|
|
|
2016-04-30 02:01:47 +00:00
|
|
|
let f = 1.0f32;
|
2016-05-13 14:43:47 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
f * 2.0;
|
2016-05-13 14:43:47 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
1.0 + f;
|
|
|
|
f * 2.0;
|
|
|
|
f / 2.0;
|
|
|
|
f - 2.0 * 4.2;
|
|
|
|
-f;
|
2018-10-18 04:20:36 +00:00
|
|
|
|
|
|
|
// No errors for the following items because they are constant expressions
|
|
|
|
enum Foo {
|
|
|
|
Bar = -2,
|
|
|
|
}
|
|
|
|
struct Baz([i32; 1 + 1]);
|
|
|
|
union Qux {
|
|
|
|
field: [i32; 1 + 1],
|
|
|
|
}
|
|
|
|
type Alias = [i32; 1 + 1];
|
|
|
|
|
|
|
|
const FOO: i32 = -2;
|
|
|
|
static BAR: i32 = -2;
|
|
|
|
|
|
|
|
let _: [i32; 1 + 1] = [0, 0];
|
|
|
|
|
|
|
|
let _: [i32; 1 + 1] = {
|
|
|
|
let a: [i32; 1 + 1] = [0, 0];
|
|
|
|
a
|
|
|
|
};
|
|
|
|
|
|
|
|
trait Trait {
|
|
|
|
const ASSOC: i32 = 1 + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Trait for Foo {
|
|
|
|
const ASSOC: i32 = {
|
|
|
|
let _: [i32; 1 + 1];
|
|
|
|
fn foo() {}
|
|
|
|
1 + 1
|
|
|
|
};
|
|
|
|
}
|
2016-04-30 02:01:47 +00:00
|
|
|
}
|