2023-07-02 12:35:19 +00:00
|
|
|
//@aux-build:proc_macro_derive.rs:proc-macro
|
2023-04-23 11:03:09 +00:00
|
|
|
|
2022-09-21 17:02:37 +00:00
|
|
|
#![allow(
|
|
|
|
clippy::assign_op_pattern,
|
|
|
|
clippy::erasing_op,
|
|
|
|
clippy::identity_op,
|
2023-01-12 18:48:13 +00:00
|
|
|
clippy::no_effect,
|
2022-10-06 07:44:38 +00:00
|
|
|
clippy::op_ref,
|
2022-09-21 17:02:37 +00:00
|
|
|
clippy::unnecessary_owned_empty_strings,
|
|
|
|
arithmetic_overflow,
|
|
|
|
unconditional_panic
|
|
|
|
)]
|
2022-10-06 07:44:38 +00:00
|
|
|
#![feature(const_mut_refs, inline_const, saturating_int_impl)]
|
2022-09-09 11:36:26 +00:00
|
|
|
#![warn(clippy::arithmetic_side_effects)]
|
|
|
|
|
2023-04-23 11:03:09 +00:00
|
|
|
extern crate proc_macro_derive;
|
|
|
|
|
2022-09-09 11:36:26 +00:00
|
|
|
use core::num::{Saturating, Wrapping};
|
|
|
|
|
2023-02-26 00:08:29 +00:00
|
|
|
const ONE: i32 = 1;
|
|
|
|
const ZERO: i32 = 0;
|
|
|
|
|
2023-01-12 18:48:13 +00:00
|
|
|
#[derive(Clone, Copy)]
|
2022-10-06 07:44:38 +00:00
|
|
|
pub struct Custom;
|
|
|
|
|
2023-04-23 11:03:09 +00:00
|
|
|
#[derive(proc_macro_derive::ShadowDerive)]
|
|
|
|
pub struct Nothing;
|
|
|
|
|
2022-10-06 07:44:38 +00:00
|
|
|
macro_rules! impl_arith {
|
2023-01-12 18:48:13 +00:00
|
|
|
( $( $_trait:ident, $lhs:ty, $rhs:ty, $method:ident; )* ) => {
|
2022-10-06 07:44:38 +00:00
|
|
|
$(
|
2023-01-12 18:48:13 +00:00
|
|
|
impl core::ops::$_trait<$lhs> for $rhs {
|
|
|
|
type Output = Custom;
|
|
|
|
fn $method(self, _: $lhs) -> Self::Output { todo!() }
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_assign_arith {
|
|
|
|
( $( $_trait:ident, $lhs:ty, $rhs:ty, $method:ident; )* ) => {
|
|
|
|
$(
|
|
|
|
impl core::ops::$_trait<$lhs> for $rhs {
|
|
|
|
fn $method(&mut self, _: $lhs) {}
|
2022-10-06 07:44:38 +00:00
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_arith!(
|
2023-01-12 18:48:13 +00:00
|
|
|
Add, Custom, Custom, add;
|
|
|
|
Div, Custom, Custom, div;
|
|
|
|
Mul, Custom, Custom, mul;
|
|
|
|
Rem, Custom, Custom, rem;
|
2023-03-10 09:53:50 +00:00
|
|
|
Shl, Custom, Custom, shl;
|
|
|
|
Shr, Custom, Custom, shr;
|
2023-01-12 18:48:13 +00:00
|
|
|
Sub, Custom, Custom, sub;
|
|
|
|
|
|
|
|
Add, Custom, &Custom, add;
|
|
|
|
Div, Custom, &Custom, div;
|
|
|
|
Mul, Custom, &Custom, mul;
|
|
|
|
Rem, Custom, &Custom, rem;
|
2023-03-10 09:53:50 +00:00
|
|
|
Shl, Custom, &Custom, shl;
|
|
|
|
Shr, Custom, &Custom, shr;
|
2023-01-12 18:48:13 +00:00
|
|
|
Sub, Custom, &Custom, sub;
|
|
|
|
|
|
|
|
Add, &Custom, Custom, add;
|
|
|
|
Div, &Custom, Custom, div;
|
|
|
|
Mul, &Custom, Custom, mul;
|
|
|
|
Rem, &Custom, Custom, rem;
|
2023-03-10 09:53:50 +00:00
|
|
|
Shl, &Custom, Custom, shl;
|
|
|
|
Shr, &Custom, Custom, shr;
|
2023-01-12 18:48:13 +00:00
|
|
|
Sub, &Custom, Custom, sub;
|
|
|
|
|
|
|
|
Add, &Custom, &Custom, add;
|
|
|
|
Div, &Custom, &Custom, div;
|
|
|
|
Mul, &Custom, &Custom, mul;
|
|
|
|
Rem, &Custom, &Custom, rem;
|
2023-03-10 09:53:50 +00:00
|
|
|
Shl, &Custom, &Custom, shl;
|
|
|
|
Shr, &Custom, &Custom, shr;
|
2023-01-12 18:48:13 +00:00
|
|
|
Sub, &Custom, &Custom, sub;
|
|
|
|
);
|
|
|
|
|
|
|
|
impl_assign_arith!(
|
|
|
|
AddAssign, Custom, Custom, add_assign;
|
|
|
|
DivAssign, Custom, Custom, div_assign;
|
|
|
|
MulAssign, Custom, Custom, mul_assign;
|
|
|
|
RemAssign, Custom, Custom, rem_assign;
|
2023-03-10 09:53:50 +00:00
|
|
|
ShlAssign, Custom, Custom, shl_assign;
|
|
|
|
ShrAssign, Custom, Custom, shr_assign;
|
2023-01-12 18:48:13 +00:00
|
|
|
SubAssign, Custom, Custom, sub_assign;
|
|
|
|
|
|
|
|
AddAssign, Custom, &Custom, add_assign;
|
|
|
|
DivAssign, Custom, &Custom, div_assign;
|
|
|
|
MulAssign, Custom, &Custom, mul_assign;
|
|
|
|
RemAssign, Custom, &Custom, rem_assign;
|
2023-03-10 09:53:50 +00:00
|
|
|
ShlAssign, Custom, &Custom, shl_assign;
|
|
|
|
ShrAssign, Custom, &Custom, shr_assign;
|
2023-01-12 18:48:13 +00:00
|
|
|
SubAssign, Custom, &Custom, sub_assign;
|
|
|
|
|
|
|
|
AddAssign, &Custom, Custom, add_assign;
|
|
|
|
DivAssign, &Custom, Custom, div_assign;
|
|
|
|
MulAssign, &Custom, Custom, mul_assign;
|
|
|
|
RemAssign, &Custom, Custom, rem_assign;
|
2023-03-10 09:53:50 +00:00
|
|
|
ShlAssign, &Custom, Custom, shl_assign;
|
|
|
|
ShrAssign, &Custom, Custom, shr_assign;
|
2023-01-12 18:48:13 +00:00
|
|
|
SubAssign, &Custom, Custom, sub_assign;
|
|
|
|
|
|
|
|
AddAssign, &Custom, &Custom, add_assign;
|
|
|
|
DivAssign, &Custom, &Custom, div_assign;
|
|
|
|
MulAssign, &Custom, &Custom, mul_assign;
|
|
|
|
RemAssign, &Custom, &Custom, rem_assign;
|
2023-03-10 09:53:50 +00:00
|
|
|
ShlAssign, &Custom, &Custom, shl_assign;
|
|
|
|
ShrAssign, &Custom, &Custom, shr_assign;
|
2023-01-12 18:48:13 +00:00
|
|
|
SubAssign, &Custom, &Custom, sub_assign;
|
2022-10-06 07:44:38 +00:00
|
|
|
);
|
|
|
|
|
2023-01-12 18:48:13 +00:00
|
|
|
impl core::ops::Neg for Custom {
|
|
|
|
type Output = Custom;
|
|
|
|
fn neg(self) -> Self::Output {
|
|
|
|
todo!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl core::ops::Neg for &Custom {
|
|
|
|
type Output = Custom;
|
|
|
|
fn neg(self) -> Self::Output {
|
|
|
|
todo!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-21 17:02:37 +00:00
|
|
|
pub fn association_with_structures_should_not_trigger_the_lint() {
|
|
|
|
enum Foo {
|
|
|
|
Bar = -2,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Trait for Foo {
|
|
|
|
const ASSOC: i32 = {
|
|
|
|
let _: [i32; 1 + 1];
|
|
|
|
fn foo() {}
|
|
|
|
1 + 1
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Baz([i32; 1 + 1]);
|
|
|
|
|
|
|
|
trait Trait {
|
|
|
|
const ASSOC: i32 = 1 + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
type Alias = [i32; 1 + 1];
|
|
|
|
|
|
|
|
union Qux {
|
|
|
|
field: [i32; 1 + 1],
|
|
|
|
}
|
|
|
|
|
|
|
|
let _: [i32; 1 + 1] = [0, 0];
|
|
|
|
|
|
|
|
let _: [i32; 1 + 1] = {
|
|
|
|
let a: [i32; 1 + 1] = [0, 0];
|
|
|
|
a
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-09-09 11:36:26 +00:00
|
|
|
pub fn hard_coded_allowed() {
|
|
|
|
let _ = 1f32 + 1f32;
|
|
|
|
let _ = 1f64 + 1f64;
|
|
|
|
|
|
|
|
let _ = Saturating(0u32) + Saturating(0u32);
|
|
|
|
let _ = String::new() + "";
|
|
|
|
let _ = Wrapping(0u32) + Wrapping(0u32);
|
|
|
|
|
|
|
|
let saturating: Saturating<u32> = Saturating(0u32);
|
|
|
|
let string: String = String::new();
|
|
|
|
let wrapping: Wrapping<u32> = Wrapping(0u32);
|
|
|
|
|
|
|
|
let inferred_saturating = saturating + saturating;
|
|
|
|
let inferred_string = string + "";
|
|
|
|
let inferred_wrapping = wrapping + wrapping;
|
|
|
|
|
|
|
|
let _ = inferred_saturating + inferred_saturating;
|
|
|
|
let _ = inferred_string + "";
|
|
|
|
let _ = inferred_wrapping + inferred_wrapping;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
2022-09-21 17:02:37 +00:00
|
|
|
pub fn const_ops_should_not_trigger_the_lint() {
|
2022-09-09 11:36:26 +00:00
|
|
|
const _: i32 = { let mut n = 1; n += 1; n };
|
|
|
|
let _ = const { let mut n = 1; n += 1; n };
|
|
|
|
|
|
|
|
const _: i32 = { let mut n = 1; n = n + 1; n };
|
|
|
|
let _ = const { let mut n = 1; n = n + 1; n };
|
|
|
|
|
|
|
|
const _: i32 = { let mut n = 1; n = 1 + n; n };
|
|
|
|
let _ = const { let mut n = 1; n = 1 + n; n };
|
|
|
|
|
|
|
|
const _: i32 = 1 + 1;
|
|
|
|
let _ = const { 1 + 1 };
|
|
|
|
|
2022-10-06 07:44:38 +00:00
|
|
|
const _: i32 = { let mut n = 1; n = -1; n = -(-1); n = -n; n };
|
|
|
|
let _ = const { let mut n = 1; n = -1; n = -(-1); n = -n; n };
|
2022-09-09 11:36:26 +00:00
|
|
|
}
|
|
|
|
|
2022-10-06 07:44:38 +00:00
|
|
|
pub fn non_overflowing_ops_or_ops_already_handled_by_the_compiler_should_not_trigger_the_lint() {
|
2022-09-21 17:02:37 +00:00
|
|
|
let mut _n = i32::MAX;
|
|
|
|
|
|
|
|
// Assign
|
|
|
|
_n += 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n += &0;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n -= 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n -= &0;
|
2023-02-26 00:08:29 +00:00
|
|
|
_n += ZERO;
|
|
|
|
_n += &ZERO;
|
|
|
|
_n -= ZERO;
|
|
|
|
_n -= &ZERO;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n /= 99;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n /= &99;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n %= 99;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n %= &99;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n *= 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n *= &0;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n *= 1;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n *= &1;
|
2023-02-26 00:08:29 +00:00
|
|
|
_n *= ZERO;
|
|
|
|
_n *= &ZERO;
|
|
|
|
_n *= ONE;
|
|
|
|
_n *= &ONE;
|
2023-01-12 18:48:13 +00:00
|
|
|
_n += -0;
|
|
|
|
_n += &-0;
|
|
|
|
_n -= -0;
|
|
|
|
_n -= &-0;
|
2023-02-26 00:08:29 +00:00
|
|
|
_n += -ZERO;
|
|
|
|
_n += &-ZERO;
|
|
|
|
_n -= -ZERO;
|
|
|
|
_n -= &-ZERO;
|
2023-01-12 18:48:13 +00:00
|
|
|
_n /= -99;
|
|
|
|
_n /= &-99;
|
|
|
|
_n %= -99;
|
|
|
|
_n %= &-99;
|
|
|
|
_n *= -0;
|
|
|
|
_n *= &-0;
|
|
|
|
_n *= -1;
|
|
|
|
_n *= &-1;
|
2022-09-21 17:02:37 +00:00
|
|
|
|
|
|
|
// Binary
|
|
|
|
_n = _n + 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n + &0;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = 0 + _n;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = &0 + _n;
|
2023-02-26 00:08:29 +00:00
|
|
|
_n = _n + ZERO;
|
|
|
|
_n = _n + &ZERO;
|
|
|
|
_n = ZERO + _n;
|
|
|
|
_n = &ZERO + _n;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = _n - 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n - &0;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = 0 - _n;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = &0 - _n;
|
2023-02-26 00:08:29 +00:00
|
|
|
_n = _n - ZERO;
|
|
|
|
_n = _n - &ZERO;
|
|
|
|
_n = ZERO - _n;
|
|
|
|
_n = &ZERO - _n;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = _n / 99;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n / &99;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = _n % 99;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n % &99;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = _n * 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n * &0;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = 0 * _n;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = &0 * _n;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = _n * 1;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n * &1;
|
2023-02-26 00:08:29 +00:00
|
|
|
_n = ZERO * _n;
|
|
|
|
_n = &ZERO * _n;
|
|
|
|
_n = _n * ONE;
|
|
|
|
_n = _n * &ONE;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = 1 * _n;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = &1 * _n;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = 23 + 85;
|
|
|
|
|
2023-04-23 11:03:09 +00:00
|
|
|
// Method
|
|
|
|
_n.saturating_div(1);
|
|
|
|
_n.wrapping_div(1);
|
|
|
|
_n.wrapping_rem(1);
|
|
|
|
_n.wrapping_rem_euclid(1);
|
|
|
|
|
|
|
|
_n.saturating_div(1);
|
|
|
|
_n.checked_div(1);
|
|
|
|
_n.checked_rem(1);
|
|
|
|
_n.checked_rem_euclid(1);
|
|
|
|
|
2022-09-21 17:02:37 +00:00
|
|
|
// Unary
|
2022-11-21 19:34:47 +00:00
|
|
|
_n = -2147483647;
|
|
|
|
_n = -i32::MAX;
|
|
|
|
_n = -i32::MIN;
|
|
|
|
_n = -&2147483647;
|
|
|
|
_n = -&i32::MAX;
|
|
|
|
_n = -&i32::MIN;
|
2022-09-21 17:02:37 +00:00
|
|
|
}
|
|
|
|
|
2023-01-12 18:48:13 +00:00
|
|
|
pub fn unknown_ops_or_runtime_ops_that_can_overflow() {
|
2022-09-21 17:02:37 +00:00
|
|
|
let mut _n = i32::MAX;
|
2023-01-12 18:48:13 +00:00
|
|
|
let mut _custom = Custom;
|
2022-09-21 17:02:37 +00:00
|
|
|
|
|
|
|
// Assign
|
|
|
|
_n += 1;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n += &1;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n -= 1;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n -= &1;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n /= 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n /= &0;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n %= 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n %= &0;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n *= 2;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n *= &2;
|
2023-01-12 18:48:13 +00:00
|
|
|
_n += -1;
|
|
|
|
_n += &-1;
|
|
|
|
_n -= -1;
|
|
|
|
_n -= &-1;
|
|
|
|
_n /= -0;
|
|
|
|
_n /= &-0;
|
|
|
|
_n %= -0;
|
|
|
|
_n %= &-0;
|
|
|
|
_n *= -2;
|
|
|
|
_n *= &-2;
|
|
|
|
_custom += Custom;
|
|
|
|
_custom += &Custom;
|
|
|
|
_custom -= Custom;
|
|
|
|
_custom -= &Custom;
|
|
|
|
_custom /= Custom;
|
|
|
|
_custom /= &Custom;
|
|
|
|
_custom %= Custom;
|
|
|
|
_custom %= &Custom;
|
|
|
|
_custom *= Custom;
|
|
|
|
_custom *= &Custom;
|
2023-03-10 09:53:50 +00:00
|
|
|
_custom >>= Custom;
|
|
|
|
_custom >>= &Custom;
|
|
|
|
_custom <<= Custom;
|
|
|
|
_custom <<= &Custom;
|
2023-01-12 18:48:13 +00:00
|
|
|
_custom += -Custom;
|
|
|
|
_custom += &-Custom;
|
|
|
|
_custom -= -Custom;
|
|
|
|
_custom -= &-Custom;
|
|
|
|
_custom /= -Custom;
|
|
|
|
_custom /= &-Custom;
|
|
|
|
_custom %= -Custom;
|
|
|
|
_custom %= &-Custom;
|
|
|
|
_custom *= -Custom;
|
|
|
|
_custom *= &-Custom;
|
2023-03-10 09:53:50 +00:00
|
|
|
_custom >>= -Custom;
|
|
|
|
_custom >>= &-Custom;
|
|
|
|
_custom <<= -Custom;
|
|
|
|
_custom <<= &-Custom;
|
2022-09-09 11:36:26 +00:00
|
|
|
|
2022-09-21 17:02:37 +00:00
|
|
|
// Binary
|
|
|
|
_n = _n + 1;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n + &1;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = 1 + _n;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = &1 + _n;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = _n - 1;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n - &1;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = 1 - _n;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = &1 - _n;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = _n / 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n / &0;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = _n % 0;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n % &0;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = _n * 2;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = _n * &2;
|
2022-09-21 17:02:37 +00:00
|
|
|
_n = 2 * _n;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = &2 * _n;
|
|
|
|
_n = 23 + &85;
|
|
|
|
_n = &23 + 85;
|
|
|
|
_n = &23 + &85;
|
2023-01-12 18:48:13 +00:00
|
|
|
_custom = _custom + _custom;
|
|
|
|
_custom = _custom + &_custom;
|
|
|
|
_custom = Custom + _custom;
|
|
|
|
_custom = &Custom + _custom;
|
|
|
|
_custom = _custom - Custom;
|
|
|
|
_custom = _custom - &Custom;
|
|
|
|
_custom = Custom - _custom;
|
|
|
|
_custom = &Custom - _custom;
|
|
|
|
_custom = _custom / Custom;
|
|
|
|
_custom = _custom / &Custom;
|
|
|
|
_custom = _custom % Custom;
|
|
|
|
_custom = _custom % &Custom;
|
|
|
|
_custom = _custom * Custom;
|
|
|
|
_custom = _custom * &Custom;
|
|
|
|
_custom = Custom * _custom;
|
|
|
|
_custom = &Custom * _custom;
|
|
|
|
_custom = Custom + &Custom;
|
|
|
|
_custom = &Custom + Custom;
|
|
|
|
_custom = &Custom + &Custom;
|
2023-03-10 09:53:50 +00:00
|
|
|
_custom = _custom >> _custom;
|
|
|
|
_custom = _custom >> &_custom;
|
|
|
|
_custom = Custom << _custom;
|
|
|
|
_custom = &Custom << _custom;
|
2022-09-09 11:36:26 +00:00
|
|
|
|
2023-04-23 11:03:09 +00:00
|
|
|
// Method
|
|
|
|
_n.saturating_div(0);
|
|
|
|
_n.wrapping_div(0);
|
|
|
|
_n.wrapping_rem(0);
|
|
|
|
_n.wrapping_rem_euclid(0);
|
|
|
|
|
|
|
|
_n.saturating_div(_n);
|
|
|
|
_n.wrapping_div(_n);
|
|
|
|
_n.wrapping_rem(_n);
|
|
|
|
_n.wrapping_rem_euclid(_n);
|
|
|
|
|
2022-09-21 17:02:37 +00:00
|
|
|
// Unary
|
|
|
|
_n = -_n;
|
2022-10-06 07:44:38 +00:00
|
|
|
_n = -&_n;
|
2023-01-12 18:48:13 +00:00
|
|
|
_custom = -_custom;
|
|
|
|
_custom = -&_custom;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copied and pasted from the `integer_arithmetic` lint for comparison.
|
|
|
|
pub fn integer_arithmetic() {
|
|
|
|
let mut i = 1i32;
|
|
|
|
let mut var1 = 0i32;
|
|
|
|
let mut var2 = -1i32;
|
|
|
|
|
|
|
|
1 + i;
|
|
|
|
i * 2;
|
|
|
|
1 % i / 2;
|
|
|
|
i - 2 + 2 - i;
|
|
|
|
-i;
|
|
|
|
i >> 1;
|
|
|
|
i << 1;
|
|
|
|
|
|
|
|
-1;
|
|
|
|
-(-1);
|
|
|
|
|
|
|
|
i & 1;
|
|
|
|
i | 1;
|
|
|
|
i ^ 1;
|
|
|
|
|
|
|
|
i += 1;
|
|
|
|
i -= 1;
|
|
|
|
i *= 2;
|
|
|
|
i /= 2;
|
|
|
|
i /= 0;
|
|
|
|
i /= -1;
|
|
|
|
i /= var1;
|
|
|
|
i /= var2;
|
|
|
|
i %= 2;
|
|
|
|
i %= 0;
|
|
|
|
i %= -1;
|
|
|
|
i %= var1;
|
|
|
|
i %= var2;
|
|
|
|
i <<= 3;
|
|
|
|
i >>= 2;
|
|
|
|
|
|
|
|
i |= 1;
|
|
|
|
i &= 1;
|
|
|
|
i ^= i;
|
2022-09-09 11:36:26 +00:00
|
|
|
}
|
|
|
|
|
2023-04-11 13:31:08 +00:00
|
|
|
pub fn issue_10583(a: u16) -> u16 {
|
|
|
|
10 / a
|
|
|
|
}
|
|
|
|
|
2023-05-20 13:39:26 +00:00
|
|
|
pub fn issue_10767() {
|
|
|
|
let n = &1.0;
|
|
|
|
n + n;
|
|
|
|
3.1_f32 + &1.2_f32;
|
|
|
|
&3.4_f32 + 1.5_f32;
|
|
|
|
&3.5_f32 + &1.3_f32;
|
|
|
|
}
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
pub fn issue_10792() {
|
|
|
|
struct One {
|
|
|
|
a: u32,
|
|
|
|
}
|
|
|
|
struct Two {
|
|
|
|
b: u32,
|
|
|
|
c: u64,
|
|
|
|
}
|
|
|
|
const ONE: One = One { a: 1 };
|
|
|
|
const TWO: Two = Two { b: 2, c: 3 };
|
|
|
|
let _ = 10 / ONE.a;
|
|
|
|
let _ = 10 / TWO.b;
|
|
|
|
let _ = 10 / TWO.c;
|
|
|
|
}
|
|
|
|
|
2023-07-17 08:19:29 +00:00
|
|
|
pub fn issue_11145() {
|
|
|
|
let mut x: Wrapping<u32> = Wrapping(0_u32);
|
|
|
|
x += 1;
|
|
|
|
}
|
|
|
|
|
2023-07-31 21:53:53 +00:00
|
|
|
pub fn issue_11262() {
|
|
|
|
let one = 1;
|
|
|
|
let zero = 0;
|
|
|
|
let _ = 2 / one;
|
|
|
|
let _ = 2 / zero;
|
|
|
|
}
|
|
|
|
|
2022-09-09 11:36:26 +00:00
|
|
|
fn main() {}
|