From d7e9106d5b0657af0364306be38c74db9bc48872 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:14:56 -0700 Subject: [PATCH 01/29] Contract and harness for as_ptr, cast, as_mut_ptr, and as_non_null_ptr --- library/core/src/ptr/non_null.rs | 52 +++++++++++++++++++++++++++++++- 1 file changed, 51 insertions(+), 1 deletion(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 4d6e484915dbf..49899683ea137 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -9,7 +9,7 @@ use crate::slice::{self, SliceIndex}; use crate::ub_checks::assert_unsafe_precondition; use crate::{fmt, hash, intrinsics, ptr}; use safety::{ensures, requires}; - +use crate::{ub_checks}; #[cfg(kani)] use crate::kani; @@ -334,6 +334,8 @@ impl NonNull { #[rustc_never_returns_null_ptr] #[must_use] #[inline(always)] + //Ensures address of resulting pointer is same as original + #[ensures(|result: &*mut T| *result as *const () as usize == self.pointer as *const () as usize)] pub const fn as_ptr(self) -> *mut T { self.pointer as *mut T } @@ -430,6 +432,10 @@ impl NonNull { #[must_use = "this returns the result of the operation, \ without modifying the original"] #[inline] + //Address presaervation + #[ensures(|result: &NonNull| result.as_ptr() as *const () as usize == self.as_ptr() as *const () as usize )] + //Ensures size of pointer types is same and pointer is properly aligned for new type 'U' + #[ensures(|result: &NonNull| core::mem::size_of::<*mut U>() == core::mem::size_of::<*mut T>() || (self.as_ptr() as *const () as usize) % core::mem::align_of::() == 0)] pub const fn cast(self) -> NonNull { // SAFETY: `self` is a `NonNull` pointer which is necessarily non-null unsafe { NonNull { pointer: self.as_ptr() as *mut U } } @@ -1508,6 +1514,10 @@ impl NonNull<[T]> { #[must_use] #[unstable(feature = "slice_ptr_get", issue = "74265")] #[rustc_const_unstable(feature = "slice_ptr_get", issue = "74265")] + // Require slice pointer be valid before converting it + #[requires(kani::mem::can_dereference(self.as_ptr()))] + //Address preservation + #[ensures(|result: &NonNull| result.as_ptr() as *const () as usize == self.as_ptr() as *const () as usize)] pub const fn as_non_null_ptr(self) -> NonNull { self.cast() } @@ -1528,6 +1538,8 @@ impl NonNull<[T]> { #[unstable(feature = "slice_ptr_get", issue = "74265")] #[rustc_const_unstable(feature = "slice_ptr_get", issue = "74265")] #[rustc_never_returns_null_ptr] + //Address preservation + #[ensures(|result: &*mut T| *result as *const () as usize == self.as_non_null_ptr().as_ptr() as *const () as usize)] pub const fn as_mut_ptr(self) -> *mut T { self.as_non_null_ptr().as_ptr() } @@ -1803,4 +1815,42 @@ mod verify { let maybe_null_ptr = if kani::any() { xptr as *mut i32 } else { null_mut() }; let _ = NonNull::new(maybe_null_ptr); } + + #[kani::proof_for_contract(NonNull::as_ptr)] + pub fn non_null_check_as_ptr() { + // Create a non-null pointer to a random value + let mut x: i32 = kani::any(); + let ptr = NonNull::new(&mut x as *mut i32).unwrap(); + // Call as_ptr + let raw_ptr = ptr.as_ptr(); + } +#[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] +pub fn non_null_check_as_mut_ptr() { + // Create a non-null slice pointer + let mut value: i32 = kani::any(); + let ptr = NonNull::new(&mut value as *mut i32).unwrap(); + let slice_ptr = NonNull::slice_from_raw_parts(ptr, 1); + // Call as_mut_ptr + let raw_ptr = slice_ptr.as_mut_ptr(); +} + +#[kani::proof_for_contract(NonNull::::cast)] +pub fn non_null_check_cast() { + // Create a non-null pointer to a random value + let mut x: i32 = kani::any(); + let ptr = NonNull::new(&mut x as *mut i32).unwrap(); + // Perform the cast + unsafe{ let casted_ptr: NonNull = ptr.cast();} +} +#[kani::proof_for_contract(NonNull::<[T]>::as_non_null_ptr)] +pub fn non_null_check_as_non_null_ptr() { + // Create a non-null pointer to a random value +let mut value: i32 = kani::any(); +let ptr = NonNull::new(&mut value as *mut i32).unwrap(); +// Create a slice pointer +let slice_ptr = NonNull::slice_from_raw_parts(ptr, 1); +// Call as_non_null_ptr +let result = slice_ptr.as_non_null_ptr(); +} + } From 5c5904f131e095cbf145eb98bc391d9018013a13 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:27:27 -0700 Subject: [PATCH 02/29] Resolved feedbacks --- kani | 1 + library/core/src/ptr/non_null.rs | 148 +- verify-error.log | 4651 ++++++++++++++++++++++++++++++ 3 files changed, 4742 insertions(+), 58 deletions(-) create mode 160000 kani create mode 100644 verify-error.log diff --git a/kani b/kani new file mode 160000 index 0000000000000..a8a28ee510151 --- /dev/null +++ b/kani @@ -0,0 +1 @@ +Subproject commit a8a28ee5101510744218653337519f16a12e3e55 diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 49899683ea137..46711c6bcaa07 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -9,7 +9,6 @@ use crate::slice::{self, SliceIndex}; use crate::ub_checks::assert_unsafe_precondition; use crate::{fmt, hash, intrinsics, ptr}; use safety::{ensures, requires}; -use crate::{ub_checks}; #[cfg(kani)] use crate::kani; @@ -335,7 +334,7 @@ impl NonNull { #[must_use] #[inline(always)] //Ensures address of resulting pointer is same as original - #[ensures(|result: &*mut T| *result as *const () as usize == self.pointer as *const () as usize)] + #[ensures(|result: &*mut T| *result == self.pointer as *mut T)] pub const fn as_ptr(self) -> *mut T { self.pointer as *mut T } @@ -432,13 +431,17 @@ impl NonNull { #[must_use = "this returns the result of the operation, \ without modifying the original"] #[inline] - //Address presaervation - #[ensures(|result: &NonNull| result.as_ptr() as *const () as usize == self.as_ptr() as *const () as usize )] - //Ensures size of pointer types is same and pointer is properly aligned for new type 'U' - #[ensures(|result: &NonNull| core::mem::size_of::<*mut U>() == core::mem::size_of::<*mut T>() || (self.as_ptr() as *const () as usize) % core::mem::align_of::() == 0)] + // Address preservation + #[ensures(|result: &NonNull| result.as_ptr() as *const () as usize == self.as_ptr() as *const () as usize )] + // Ensures pointer is properly aligned for new type 'U' + #[ensures(|result: &NonNull| (self.as_ptr() as *const () as usize) % core::mem::align_of::() == 0)] pub const fn cast(self) -> NonNull { // SAFETY: `self` is a `NonNull` pointer which is necessarily non-null - unsafe { NonNull { pointer: self.as_ptr() as *mut U } } + unsafe { + NonNull { + pointer: self.as_ptr() as *mut U, + } + } } /// Adds an offset to a pointer. @@ -490,7 +493,11 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { NonNull { pointer: intrinsics::offset(self.pointer, count) } } + unsafe { + NonNull { + pointer: intrinsics::offset(self.pointer, count), + } + } } /// Calculates the offset from a pointer in bytes. @@ -514,7 +521,11 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { NonNull { pointer: self.pointer.byte_offset(count) } } + unsafe { + NonNull { + pointer: self.pointer.byte_offset(count), + } + } } /// Adds an offset to a pointer (convenience for `.offset(count as isize)`). @@ -566,7 +577,11 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { NonNull { pointer: intrinsics::offset(self.pointer, count) } } + unsafe { + NonNull { + pointer: intrinsics::offset(self.pointer, count), + } + } } /// Calculates the offset from a pointer in bytes (convenience for `.byte_offset(count as isize)`). @@ -591,7 +606,11 @@ impl NonNull { // Additionally safety contract of `add` guarantees that the resulting pointer is pointing // to an allocation, there can't be an allocation at null, thus it's safe to construct // `NonNull`. - unsafe { NonNull { pointer: self.pointer.byte_add(count) } } + unsafe { + NonNull { + pointer: self.pointer.byte_add(count), + } + } } /// Subtracts an offset from a pointer (convenience for @@ -675,7 +694,11 @@ impl NonNull { // Additionally safety contract of `sub` guarantees that the resulting pointer is pointing // to an allocation, there can't be an allocation at null, thus it's safe to construct // `NonNull`. - unsafe { NonNull { pointer: self.pointer.byte_sub(count) } } + unsafe { + NonNull { + pointer: self.pointer.byte_sub(count), + } + } } /// Calculates the distance between two pointers. The returned value is in @@ -1514,10 +1537,8 @@ impl NonNull<[T]> { #[must_use] #[unstable(feature = "slice_ptr_get", issue = "74265")] #[rustc_const_unstable(feature = "slice_ptr_get", issue = "74265")] - // Require slice pointer be valid before converting it - #[requires(kani::mem::can_dereference(self.as_ptr()))] - //Address preservation - #[ensures(|result: &NonNull| result.as_ptr() as *const () as usize == self.as_ptr() as *const () as usize)] + // Address preservation + #[ensures(|result: &NonNull| result.as_ptr() as *const () as usize == self.pointer as *const () as usize)] pub const fn as_non_null_ptr(self) -> NonNull { self.cast() } @@ -1538,8 +1559,8 @@ impl NonNull<[T]> { #[unstable(feature = "slice_ptr_get", issue = "74265")] #[rustc_const_unstable(feature = "slice_ptr_get", issue = "74265")] #[rustc_never_returns_null_ptr] - //Address preservation - #[ensures(|result: &*mut T| *result as *const () as usize == self.as_non_null_ptr().as_ptr() as *const () as usize)] + // Address preservation + #[ensures(|result: &*mut T| *result == self.pointer as *mut T)] pub const fn as_mut_ptr(self) -> *mut T { self.as_non_null_ptr().as_ptr() } @@ -1776,7 +1797,11 @@ impl From<&mut T> for NonNull { #[inline] fn from(reference: &mut T) -> Self { // SAFETY: A mutable reference cannot be null. - unsafe { NonNull { pointer: reference as *mut T } } + unsafe { + NonNull { + pointer: reference as *mut T, + } + } } } @@ -1788,12 +1813,16 @@ impl From<&T> for NonNull { #[inline] fn from(reference: &T) -> Self { // SAFETY: A reference cannot be null. - unsafe { NonNull { pointer: reference as *const T } } + unsafe { + NonNull { + pointer: reference as *const T, + } + } } } #[cfg(kani)] -#[unstable(feature="kani", issue="none")] +#[unstable(feature = "kani", issue = "none")] mod verify { use super::*; use crate::ptr::null_mut; @@ -1812,45 +1841,48 @@ mod verify { pub fn non_null_check_new() { let mut x: i32 = kani::any(); let xptr = &mut x; - let maybe_null_ptr = if kani::any() { xptr as *mut i32 } else { null_mut() }; + let maybe_null_ptr = if kani::any() { + xptr as *mut i32 + } else { + null_mut() + }; let _ = NonNull::new(maybe_null_ptr); } - #[kani::proof_for_contract(NonNull::as_ptr)] - pub fn non_null_check_as_ptr() { - // Create a non-null pointer to a random value - let mut x: i32 = kani::any(); - let ptr = NonNull::new(&mut x as *mut i32).unwrap(); - // Call as_ptr - let raw_ptr = ptr.as_ptr(); - } -#[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] -pub fn non_null_check_as_mut_ptr() { - // Create a non-null slice pointer - let mut value: i32 = kani::any(); - let ptr = NonNull::new(&mut value as *mut i32).unwrap(); - let slice_ptr = NonNull::slice_from_raw_parts(ptr, 1); - // Call as_mut_ptr - let raw_ptr = slice_ptr.as_mut_ptr(); -} + #[kani::proof_for_contract(NonNull::as_ptr)] + pub fn non_null_check_as_ptr() { + // Create a non-null pointer to a random value + let mut x: i32 = kani::any(); + let ptr = NonNull::new(&mut x as *mut i32).unwrap(); + // Call as_ptr + let raw_ptr = ptr.as_ptr(); + } + #[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] + pub fn non_null_check_as_mut_ptr() { + // Create a non-null slice pointer + let mut value: i32 = kani::any(); + let ptr = NonNull::new(&mut value as *mut i32).unwrap(); + let slice_ptr = NonNull::slice_from_raw_parts(ptr, 1); + // Call as_mut_ptr + let raw_ptr = slice_ptr.as_mut_ptr(); + } -#[kani::proof_for_contract(NonNull::::cast)] -pub fn non_null_check_cast() { - // Create a non-null pointer to a random value - let mut x: i32 = kani::any(); - let ptr = NonNull::new(&mut x as *mut i32).unwrap(); - // Perform the cast - unsafe{ let casted_ptr: NonNull = ptr.cast();} -} -#[kani::proof_for_contract(NonNull::<[T]>::as_non_null_ptr)] -pub fn non_null_check_as_non_null_ptr() { - // Create a non-null pointer to a random value -let mut value: i32 = kani::any(); -let ptr = NonNull::new(&mut value as *mut i32).unwrap(); -// Create a slice pointer -let slice_ptr = NonNull::slice_from_raw_parts(ptr, 1); -// Call as_non_null_ptr -let result = slice_ptr.as_non_null_ptr(); -} - + #[kani::proof_for_contract(NonNull::::cast)] + pub fn non_null_check_cast() { + // Create a non-null pointer to a random value + let mut x: i32 = kani::any(); + let ptr = NonNull::new(&mut x as *mut i32).unwrap(); + // Perform the cast + let casted_ptr: NonNull = ptr.cast(); + } + #[kani::proof_for_contract(NonNull::<[T]>::as_non_null_ptr)] + pub fn non_null_check_as_non_null_ptr() { + // Create a non-null pointer to a random value + let mut value: i32 = kani::any(); + let ptr = NonNull::new(&mut value as *mut i32).unwrap(); + // Create a slice pointer + let slice_ptr = NonNull::slice_from_raw_parts(ptr, 1); + // Call as_non_null_ptr + let result = slice_ptr.as_non_null_ptr(); + } } diff --git a/verify-error.log b/verify-error.log new file mode 100644 index 0000000000000..cdface1356641 --- /dev/null +++ b/verify-error.log @@ -0,0 +1,4651 @@ +Kani Rust Verifier 0.56.0 (standalone) +Checking harness ptr::non_null::verify::non_null_check_as_non_null_ptr... +CBMC 6.3.1 (cbmc-6.3.1) +CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos +Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify30non_null_check_as_non_null_ptr.out +Generating GOTO Program +Adding CPROVER library (x86_64) +Removal of function pointers and virtual functions +Generic Property Instrumentation +Running with 16 object bits, 48 offset bits (user-specified) +Starting Bounded Model Checking +Runtime Symex: 0.180219s +size of program expression: 1669 steps +slicing removed 1043 assignments +Generated 64 VCC(s), 9 remaining after simplification +Runtime Postprocess Equation: 0.000590924s +Passing problem to propositional reduction +converting SSA +Runtime Convert SSA: 0.0118913s +Running propositional reduction +Post-processing +Runtime Post-process: 3.6194e-05s +Solving with CaDiCaL 2.0.0 +4210 variables, 4443 clauses +SAT checker: instance is SATISFIABLE +Runtime Solver: 0.0012069s +Runtime decision procedure: 0.013384s +Running propositional reduction +Solving with CaDiCaL 2.0.0 +4211 variables, 4444 clauses +SAT checker: instance is UNSATISFIABLE +Runtime Solver: 7.9463e-05s +Runtime decision procedure: 0.000142946s + +RESULTS: +Check 1: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 2: __CPROVER_contracts_write_set_check_assignment.assertion.1 + - Status: SUCCESS + - Description: "ptr NULL or writable up to size" + - Location: :775 in function __CPROVER_contracts_write_set_check_assignment + +Check 3: __CPROVER_contracts_write_set_check_assignment.assertion.2 + - Status: SUCCESS + - Description: "CAR size is less than __CPROVER_max_malloc_size" + - Location: :792 in function __CPROVER_contracts_write_set_check_assignment + +Check 4: __CPROVER_contracts_write_set_check_assignment.assertion.3 + - Status: SUCCESS + - Description: "no offset bits overflow on CAR upper bound computation" + - Location: :798 in function __CPROVER_contracts_write_set_check_assignment + +Check 5: __CPROVER_contracts_write_set_check_assignment.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :807 in function __CPROVER_contracts_write_set_check_assignment + +Check 6: __CPROVER_contracts_write_set_record_deallocated.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated + +Check 7: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#1} + +Check 8: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#0} + +Check 9: ptr::non_null::NonNull::<[i32]>::cast::::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#2} + +Check 10: panic::location::Location::<'_>::caller.unsupported_construct.1 + - Status: SUCCESS + - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" + - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller + +Check 11: ptr::non_null::NonNull::::new::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 12: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} + +Check 13: fmt::Arguments::<'_>::new_const::<1>.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 14: ptr::non_null::NonNull::<[i32]>::cast::::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#1} + +Check 15: free.frees.1 + - Status: SUCCESS + - Description: "Check that ptr is freeable" + - Location: :43 in function free + +Check 16: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} + +Check 17: >::as_non_null_ptr::{closure#2}::{closure#1}.single_top_level_call.1 + - Status: SUCCESS + - Description: "Only a single top-level call to function _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE15as_non_null_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE15as_non_null_ptrs0_0s_0Bd_" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function >::as_non_null_ptr::{closure#2}::{closure#1} + +Check 18: >::as_non_null_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_requires.1 + - Status: SUCCESS + - Description: "Check that requires do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function >::as_non_null_ptr::{closure#2}::{closure#1} + +Check 19: >::as_non_null_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_ensures.1 + - Status: SUCCESS + - Description: "Check that ensures do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function >::as_non_null_ptr::{closure#2}::{closure#1} + +Check 20: >::as_non_null_ptr::{closure#2}::{closure#1}.no_recursive_call.1 + - Status: SUCCESS + - Description: "No recursive call to function _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE15as_non_null_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE15as_non_null_ptrs0_0s_0Bd_" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function >::as_non_null_ptr::{closure#2}::{closure#1} + +Check 21: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#0} + +Check 22: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 + - Status: SUCCESS + - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" + - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime + +Check 23: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#2} + +Check 24: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#2} + +Check 25: option::unwrap_failed.assertion.1 + - Status: SUCCESS + - Description: "called `Option::unwrap()` on a `None` value" + - Location: library/core/src/option.rs:2015:5 in function option::unwrap_failed + +Check 26: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} + +Check 27: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} + +Check 28: ptr::non_null::NonNull::<[i32]>::cast::::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#0} + +Check 29: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#1} + +Check 30: ptr::non_null::NonNull::::new.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + +Check 31: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} + +Check 32: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.assertion.1 + - Status: SUCCESS + - Description: "|result: &NonNull| result.as_ptr() as *const () as usize == self.pointer as +*const () as usize" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 33: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#0} + +Check 34: option::Option::>::unwrap.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap + +Check 35: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 36: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} + +Check 37: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#1} + +Check 38: __sincospi.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 39: __sincospi.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 40: __sincospi.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 41: __sincospi.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 42: __sincospi.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 43: __sincospi.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 44: __sincospi.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 45: __sincospi.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 46: __sincospi.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 47: __sincospi.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 48: __sincospi.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 49: __sincospi.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 50: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 51: __sincosf.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 52: __sincosf.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 53: __sincosf.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 54: __sincosf.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 55: __sincosf.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 56: __sincosf.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 57: __sincosf.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 58: __sincosf.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 59: __sincosf.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 60: __sincosf.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 61: __sincosf.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 62: __sincosf.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 63: __sincos.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 64: __sincos.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 65: __sincos.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 66: __sincos.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 67: __sincos.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 68: __sincos.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 69: __sincos.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 70: __sincos.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 71: __sincos.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 72: __sincos.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 73: __sincos.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 74: __sincos.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 75: __sincospif.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 76: __sincospif.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 77: __sincospif.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 78: __sincospif.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 79: __sincospif.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 80: __sincospif.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 81: __sincospif.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 82: __sincospif.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 83: __sincospif.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 84: __sincospif.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 85: __sincospif.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 86: __sincospif.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 87: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 88: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 89: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 90: option::Option::>::unwrap.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap + +Check 91: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.1 + - Status: SUCCESS + - Description: "free argument must be NULL or valid pointer" + - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr + +Check 92: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.2 + - Status: SUCCESS + - Description: "free argument must be dynamic object" + - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr + +Check 93: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.3 + - Status: SUCCESS + - Description: "free argument has offset zero" + - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr + +Check 94: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.4 + - Status: SUCCESS + - Description: "double free" + - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr + +Check 95: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.5 + - Status: SUCCESS + - Description: "free called for new[] object" + - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr + +Check 96: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.6 + - Status: SUCCESS + - Description: "free called for stack-allocated object" + - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr + +Check 97: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 98: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 99: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 100: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 101: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 102: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 103: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 104: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 105: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 106: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 107: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 108: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 109: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 110: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 111: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 112: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 113: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 114: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 115: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} + +Check 116: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 117: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 118: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 119: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 120: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 121: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 122: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 123: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 124: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 125: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 126: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 127: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} + +Check 128: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 129: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 130: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 131: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 132: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 133: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 134: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 135: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 136: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 137: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 138: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 139: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 140: ptr::non_null::NonNull::::new.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + + +SUMMARY: + ** 0 of 140 failed + +VERIFICATION:- SUCCESSFUL +Verification Time: 1.1664202s + +Checking harness ptr::non_null::verify::non_null_check_cast... +CBMC 6.3.1 (cbmc-6.3.1) +CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos +Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify19non_null_check_cast.out +Generating GOTO Program +Adding CPROVER library (x86_64) +Removal of function pointers and virtual functions +Generic Property Instrumentation +Running with 16 object bits, 48 offset bits (user-specified) +Starting Bounded Model Checking +Runtime Symex: 0.185839s +size of program expression: 1595 steps +slicing removed 989 assignments +Generated 88 VCC(s), 17 remaining after simplification +Runtime Postprocess Equation: 0.000701615s +Passing problem to propositional reduction +converting SSA +Runtime Convert SSA: 0.0134702s +Running propositional reduction +Post-processing +Runtime Post-process: 3.0503e-05s +Solving with CaDiCaL 2.0.0 +3630 variables, 3863 clauses +SAT checker: instance is SATISFIABLE +Runtime Solver: 0.000447864s +Runtime decision procedure: 0.0142278s +Running propositional reduction +Solving with CaDiCaL 2.0.0 +3631 variables, 3864 clauses +SAT checker: instance is UNSATISFIABLE +Runtime Solver: 9.6396e-05s +Runtime decision procedure: 0.000173584s + +RESULTS: +Check 1: __CPROVER_contracts_write_set_check_assignment.assertion.1 + - Status: SUCCESS + - Description: "ptr NULL or writable up to size" + - Location: :775 in function __CPROVER_contracts_write_set_check_assignment + +Check 2: __CPROVER_contracts_write_set_check_assignment.assertion.2 + - Status: SUCCESS + - Description: "CAR size is less than __CPROVER_max_malloc_size" + - Location: :792 in function __CPROVER_contracts_write_set_check_assignment + +Check 3: __CPROVER_contracts_write_set_check_assignment.assertion.3 + - Status: SUCCESS + - Description: "no offset bits overflow on CAR upper bound computation" + - Location: :798 in function __CPROVER_contracts_write_set_check_assignment + +Check 4: __CPROVER_contracts_write_set_check_assignment.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :807 in function __CPROVER_contracts_write_set_check_assignment + +Check 5: free.frees.1 + - Status: SUCCESS + - Description: "Check that ptr is freeable" + - Location: :43 in function free + +Check 6: fmt::Arguments::<'_>::new_const::<1>.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 7: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 8: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} + +Check 9: ptr::non_null::NonNull::::cast::::{closure#2}.assertion.1 + - Status: SUCCESS + - Description: "|result: &NonNull| result.as_ptr() as *const () as usize == self.as_ptr() +as *const () as usize" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 10: ptr::non_null::NonNull::::cast::::{closure#2}.assertion.2 + - Status: SUCCESS + - Description: "|result: &NonNull| (self.as_ptr() as *const () as usize) % +core::mem::align_of::() == 0" + - Location: library/core/src/ptr/non_null.rs:437:5 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 11: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 12: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.assertion.1 + - Status: SUCCESS + - Description: "attempt to calculate the remainder with a divisor of zero" + - Location: library/core/src/ptr/non_null.rs:437:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 13: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.arithmetic_overflow.1 + - Status: SUCCESS + - Description: "attempt to calculate the remainder with a divisor of zero" + - Location: library/core/src/ptr/non_null.rs:437:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 14: __CPROVER_contracts_write_set_record_deallocated.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated + +Check 15: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} + +Check 16: option::Option::>::unwrap.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap + +Check 17: ptr::non_null::NonNull::::cast::::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#1} + +Check 18: panic::location::Location::<'_>::caller.unsupported_construct.1 + - Status: SUCCESS + - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" + - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller + +Check 19: option::unwrap_failed.assertion.1 + - Status: SUCCESS + - Description: "called `Option::unwrap()` on a `None` value" + - Location: library/core/src/option.rs:2015:5 in function option::unwrap_failed + +Check 20: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} + +Check 21: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} + +Check 22: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} + +Check 23: ptr::non_null::NonNull::::new.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + +Check 24: >::cast::::{closure#2}::{closure#2}.single_top_level_call.1 + - Status: SUCCESS + - Description: "Only a single top-level call to function _RNCNCINvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtBa_7NonNulllE4casthEs0_0s0_0Be_ when checking contract _RNCNCINvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtBa_7NonNulllE4casthEs0_0s0_0Be_" + - Location: library/core/src/ptr/non_null.rs:435:5 in function >::cast::::{closure#2}::{closure#2} + +Check 25: >::cast::::{closure#2}::{closure#2}.no_alloc_dealloc_in_requires.1 + - Status: SUCCESS + - Description: "Check that requires do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:435:5 in function >::cast::::{closure#2}::{closure#2} + +Check 26: >::cast::::{closure#2}::{closure#2}.no_alloc_dealloc_in_ensures.1 + - Status: SUCCESS + - Description: "Check that ensures do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:435:5 in function >::cast::::{closure#2}::{closure#2} + +Check 27: >::cast::::{closure#2}::{closure#2}.no_recursive_call.1 + - Status: SUCCESS + - Description: "No recursive call to function _RNCNCINvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtBa_7NonNulllE4casthEs0_0s0_0Be_ when checking contract _RNCNCINvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtBa_7NonNulllE4casthEs0_0s0_0Be_" + - Location: library/core/src/ptr/non_null.rs:435:5 in function >::cast::::{closure#2}::{closure#2} + +Check 28: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 + - Status: SUCCESS + - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" + - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime + +Check 29: ptr::non_null::NonNull::::new::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 30: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} + +Check 31: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} + +Check 32: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} + +Check 33: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 34: ptr::non_null::NonNull::::cast::::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#0} + +Check 35: __sincosf.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 36: __sincosf.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 37: __sincosf.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 38: __sincosf.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 39: __sincosf.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 40: __sincosf.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 41: __sincosf.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 42: __sincosf.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 43: __sincosf.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 44: __sincosf.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 45: __sincosf.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 46: __sincosf.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 47: __sincos.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 48: __sincos.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 49: __sincos.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 50: __sincos.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 51: __sincos.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 52: __sincos.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 53: __sincos.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 54: __sincos.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 55: __sincos.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 56: __sincos.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 57: __sincos.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 58: __sincos.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 59: __sincospi.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 60: __sincospi.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 61: __sincospi.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 62: __sincospi.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 63: __sincospi.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 64: __sincospi.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 65: __sincospi.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 66: __sincospi.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 67: __sincospi.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 68: __sincospi.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 69: __sincospi.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 70: __sincospi.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 71: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 72: __sincospif.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 73: __sincospif.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 74: __sincospif.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 75: __sincospif.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 76: __sincospif.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 77: __sincospif.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 78: __sincospif.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 79: __sincospif.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 80: __sincospif.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 81: __sincospif.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 82: __sincospif.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 83: __sincospif.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 84: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 85: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 86: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 87: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 88: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 89: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 90: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 91: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 92: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 93: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 94: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 95: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 96: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 97: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 98: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 99: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 100: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 101: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 102: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 103: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 104: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} + +Check 105: option::Option::>::unwrap.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap + +Check 106: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 107: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 108: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 109: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 110: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 111: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 112: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 113: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 114: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 115: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 116: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 117: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 118: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.division-by-zero.1 + - Status: SUCCESS + - Description: "division by zero" + - Location: library/core/src/ptr/non_null.rs:437:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} + +Check 119: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 120: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 121: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 122: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 123: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 124: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 125: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 126: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 127: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 128: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 129: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 130: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 131: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 132: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 133: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 134: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 135: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 136: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} + +Check 137: ptr::non_null::NonNull::::new.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + +Check 138: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 139: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 140: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 141: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 142: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 143: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 144: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 145: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 146: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 147: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 148: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 149: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 150: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} + +Check 151: ptr::non_null::verify::non_null_check_cast.precondition_instance.1 + - Status: SUCCESS + - Description: "free argument must be NULL or valid pointer" + - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast + +Check 152: ptr::non_null::verify::non_null_check_cast.precondition_instance.2 + - Status: SUCCESS + - Description: "free argument must be dynamic object" + - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast + +Check 153: ptr::non_null::verify::non_null_check_cast.precondition_instance.3 + - Status: SUCCESS + - Description: "free argument has offset zero" + - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast + +Check 154: ptr::non_null::verify::non_null_check_cast.precondition_instance.4 + - Status: SUCCESS + - Description: "double free" + - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast + +Check 155: ptr::non_null::verify::non_null_check_cast.precondition_instance.5 + - Status: SUCCESS + - Description: "free called for new[] object" + - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast + +Check 156: ptr::non_null::verify::non_null_check_cast.precondition_instance.6 + - Status: SUCCESS + - Description: "free called for stack-allocated object" + - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast + + +SUMMARY: + ** 0 of 156 failed + +VERIFICATION:- SUCCESSFUL +Verification Time: 1.2068224s + +Checking harness ptr::non_null::verify::non_null_check_as_mut_ptr... +CBMC 6.3.1 (cbmc-6.3.1) +CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos +Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify25non_null_check_as_mut_ptr.out +Generating GOTO Program +Adding CPROVER library (x86_64) +Removal of function pointers and virtual functions +Generic Property Instrumentation +Running with 16 object bits, 48 offset bits (user-specified) +Starting Bounded Model Checking +Runtime Symex: 0.239313s +size of program expression: 1857 steps +slicing removed 1144 assignments +Generated 64 VCC(s), 9 remaining after simplification +Runtime Postprocess Equation: 0.00113575s +Passing problem to propositional reduction +converting SSA +Runtime Convert SSA: 0.0171243s +Running propositional reduction +Post-processing +Runtime Post-process: 9.8933e-05s +Solving with CaDiCaL 2.0.0 +4989 variables, 5233 clauses +SAT checker: instance is SATISFIABLE +Runtime Solver: 0.000798177s +Runtime decision procedure: 0.0199405s +Running propositional reduction +Solving with CaDiCaL 2.0.0 +4990 variables, 5234 clauses +SAT checker: instance is UNSATISFIABLE +Runtime Solver: 8.5418e-05s +Runtime decision procedure: 0.000165653s + +RESULTS: +Check 1: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#1} + +Check 2: ptr::non_null::NonNull::<[i32]>::cast::::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#0} + +Check 3: free.frees.1 + - Status: SUCCESS + - Description: "Check that ptr is freeable" + - Location: :43 in function free + +Check 4: __CPROVER_contracts_write_set_record_deallocated.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated + +Check 5: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#0} + +Check 6: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} + +Check 7: fmt::Arguments::<'_>::new_const::<1>.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 8: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.assertion.1 + - Status: SUCCESS + - Description: "|result: &*mut T| *result == self.pointer as *mut T" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 9: __CPROVER_contracts_write_set_check_assignment.assertion.1 + - Status: SUCCESS + - Description: "ptr NULL or writable up to size" + - Location: :775 in function __CPROVER_contracts_write_set_check_assignment + +Check 10: __CPROVER_contracts_write_set_check_assignment.assertion.2 + - Status: SUCCESS + - Description: "CAR size is less than __CPROVER_max_malloc_size" + - Location: :792 in function __CPROVER_contracts_write_set_check_assignment + +Check 11: __CPROVER_contracts_write_set_check_assignment.assertion.3 + - Status: SUCCESS + - Description: "no offset bits overflow on CAR upper bound computation" + - Location: :798 in function __CPROVER_contracts_write_set_check_assignment + +Check 12: __CPROVER_contracts_write_set_check_assignment.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :807 in function __CPROVER_contracts_write_set_check_assignment + +Check 13: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} + +Check 14: >::as_mut_ptr::{closure#2}::{closure#1}.single_top_level_call.1 + - Status: SUCCESS + - Description: "Only a single top-level call to function _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE10as_mut_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE10as_mut_ptrs0_0s_0Bd_" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function >::as_mut_ptr::{closure#2}::{closure#1} + +Check 15: >::as_mut_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_requires.1 + - Status: SUCCESS + - Description: "Check that requires do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function >::as_mut_ptr::{closure#2}::{closure#1} + +Check 16: >::as_mut_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_ensures.1 + - Status: SUCCESS + - Description: "Check that ensures do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function >::as_mut_ptr::{closure#2}::{closure#1} + +Check 17: >::as_mut_ptr::{closure#2}::{closure#1}.no_recursive_call.1 + - Status: SUCCESS + - Description: "No recursive call to function _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE10as_mut_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE10as_mut_ptrs0_0s_0Bd_" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function >::as_mut_ptr::{closure#2}::{closure#1} + +Check 18: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 19: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 20: ptr::non_null::NonNull::<[i32]>::cast::::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#2} + +Check 21: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#1} + +Check 22: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} + +Check 23: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#2} + +Check 24: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} + +Check 25: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#2} + +Check 26: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} + +Check 27: ptr::non_null::NonNull::<[i32]>::cast::::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#1} + +Check 28: option::Option::>::unwrap.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap + +Check 29: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 + - Status: SUCCESS + - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" + - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime + +Check 30: ptr::non_null::NonNull::::new::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 31: option::unwrap_failed.assertion.1 + - Status: SUCCESS + - Description: "called `Option::unwrap()` on a `None` value" + - Location: library/core/src/option.rs:2015:5 in function option::unwrap_failed + +Check 32: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#0} + +Check 33: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#0} + +Check 34: ptr::non_null::NonNull::::new.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + +Check 35: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} + +Check 36: panic::location::Location::<'_>::caller.unsupported_construct.1 + - Status: SUCCESS + - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" + - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller + +Check 37: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#1} + +Check 38: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#1} + +Check 39: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#0} + +Check 40: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} + +Check 41: __sincospi.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 42: __sincospi.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 43: __sincospi.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 44: __sincospi.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 45: __sincospi.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 46: __sincospi.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 47: __sincospi.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 48: __sincospi.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 49: __sincospi.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 50: __sincospi.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 51: __sincospi.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 52: __sincospi.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 53: __sincos.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 54: __sincos.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 55: __sincos.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 56: __sincos.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 57: __sincos.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 58: __sincos.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 59: __sincos.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 60: __sincos.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 61: __sincos.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 62: __sincos.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 63: __sincos.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 64: __sincos.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 65: __sincosf.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 66: __sincosf.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 67: __sincosf.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 68: __sincosf.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 69: __sincosf.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 70: __sincosf.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 71: __sincosf.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 72: __sincosf.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 73: __sincosf.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 74: __sincosf.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 75: __sincosf.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 76: __sincosf.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 77: __sincospif.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 78: __sincospif.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 79: __sincospif.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 80: __sincospif.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 81: __sincospif.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 82: __sincospif.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 83: __sincospif.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 84: __sincospif.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 85: __sincospif.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 86: __sincospif.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 87: __sincospif.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 88: __sincospif.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 89: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 90: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 91: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 92: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.1 + - Status: SUCCESS + - Description: "free argument must be NULL or valid pointer" + - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr + +Check 93: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.2 + - Status: SUCCESS + - Description: "free argument must be dynamic object" + - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr + +Check 94: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.3 + - Status: SUCCESS + - Description: "free argument has offset zero" + - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr + +Check 95: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.4 + - Status: SUCCESS + - Description: "double free" + - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr + +Check 96: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.5 + - Status: SUCCESS + - Description: "free called for new[] object" + - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr + +Check 97: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.6 + - Status: SUCCESS + - Description: "free called for stack-allocated object" + - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr + +Check 98: ptr::non_null::NonNull::::new.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + +Check 99: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 100: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 101: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 102: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 103: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 104: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 105: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 106: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 107: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 108: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 109: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 110: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 111: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} + +Check 112: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 113: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 114: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 115: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 116: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 117: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 118: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 119: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 120: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 121: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 122: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 123: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 124: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 125: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 126: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 127: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 128: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 129: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} + +Check 130: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 131: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 132: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 133: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 134: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 135: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 136: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 137: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 138: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 139: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 140: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 141: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} + +Check 142: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 143: option::Option::>::unwrap.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap + + +SUMMARY: + ** 0 of 143 failed + +VERIFICATION:- SUCCESSFUL +Verification Time: 1.3654947s + +Checking harness ptr::non_null::verify::non_null_check_as_ptr... +CBMC 6.3.1 (cbmc-6.3.1) +CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos +Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify21non_null_check_as_ptr.out +Generating GOTO Program +Adding CPROVER library (x86_64) +Removal of function pointers and virtual functions +Generic Property Instrumentation +Running with 16 object bits, 48 offset bits (user-specified) +Starting Bounded Model Checking +Runtime Symex: 0.143461s +size of program expression: 1442 steps +slicing removed 868 assignments +Generated 64 VCC(s), 9 remaining after simplification +Runtime Postprocess Equation: 0.000657609s +Passing problem to propositional reduction +converting SSA +Runtime Convert SSA: 0.00933137s +Running propositional reduction +Post-processing +Runtime Post-process: 2.8274e-05s +Solving with CaDiCaL 2.0.0 +2784 variables, 2999 clauses +SAT checker: instance is SATISFIABLE +Runtime Solver: 0.00164581s +Runtime decision procedure: 0.0113016s +Running propositional reduction +Solving with CaDiCaL 2.0.0 +2785 variables, 3000 clauses +SAT checker: instance is UNSATISFIABLE +Runtime Solver: 0.000133719s +Runtime decision procedure: 0.000234027s + +RESULTS: +Check 1: free.frees.1 + - Status: SUCCESS + - Description: "Check that ptr is freeable" + - Location: :43 in function free + +Check 2: __CPROVER_contracts_write_set_check_assignment.assertion.1 + - Status: SUCCESS + - Description: "ptr NULL or writable up to size" + - Location: :775 in function __CPROVER_contracts_write_set_check_assignment + +Check 3: __CPROVER_contracts_write_set_check_assignment.assertion.2 + - Status: SUCCESS + - Description: "CAR size is less than __CPROVER_max_malloc_size" + - Location: :792 in function __CPROVER_contracts_write_set_check_assignment + +Check 4: __CPROVER_contracts_write_set_check_assignment.assertion.3 + - Status: SUCCESS + - Description: "no offset bits overflow on CAR upper bound computation" + - Location: :798 in function __CPROVER_contracts_write_set_check_assignment + +Check 5: __CPROVER_contracts_write_set_check_assignment.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :807 in function __CPROVER_contracts_write_set_check_assignment + +Check 6: __CPROVER_contracts_write_set_record_deallocated.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated + +Check 7: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 8: option::Option::>::unwrap.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap + +Check 9: ptr::non_null::NonNull::::as_ptr::{closure#2}.assertion.1 + - Status: SUCCESS + - Description: "|result: &*mut T| *result == self.pointer as *mut T" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 10: >::as_ptr::{closure#2}::{closure#1}.single_top_level_call.1 + - Status: SUCCESS + - Description: "Only a single top-level call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE6as_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE6as_ptrs0_0s_0Bd_" + - Location: library/core/src/ptr/non_null.rs:337:5 in function >::as_ptr::{closure#2}::{closure#1} + +Check 11: >::as_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_requires.1 + - Status: SUCCESS + - Description: "Check that requires do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:337:5 in function >::as_ptr::{closure#2}::{closure#1} + +Check 12: >::as_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_ensures.1 + - Status: SUCCESS + - Description: "Check that ensures do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:337:5 in function >::as_ptr::{closure#2}::{closure#1} + +Check 13: >::as_ptr::{closure#2}::{closure#1}.no_recursive_call.1 + - Status: SUCCESS + - Description: "No recursive call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE6as_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE6as_ptrs0_0s_0Bd_" + - Location: library/core/src/ptr/non_null.rs:337:5 in function >::as_ptr::{closure#2}::{closure#1} + +Check 14: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} + +Check 15: option::unwrap_failed.assertion.1 + - Status: SUCCESS + - Description: "called `Option::unwrap()` on a `None` value" + - Location: library/core/src/option.rs:2015:5 in function option::unwrap_failed + +Check 16: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} + +Check 17: panic::location::Location::<'_>::caller.unsupported_construct.1 + - Status: SUCCESS + - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" + - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller + +Check 18: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} + +Check 19: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} + +Check 20: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} + +Check 21: ptr::non_null::NonNull::::new.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + +Check 22: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 + - Status: SUCCESS + - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" + - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime + +Check 23: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} + +Check 24: ptr::non_null::NonNull::::new::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 25: fmt::Arguments::<'_>::new_const::<1>.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 26: __sincospi.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 27: __sincospi.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 28: __sincospi.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 29: __sincospi.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 30: __sincospi.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 31: __sincospi.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 32: __sincospi.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 33: __sincospi.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 34: __sincospi.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 35: __sincospi.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 36: __sincospi.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 37: __sincospi.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 38: __sincosf.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 39: __sincosf.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 40: __sincosf.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 41: __sincosf.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 42: __sincosf.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 43: __sincosf.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 44: __sincosf.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 45: __sincosf.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 46: __sincosf.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 47: __sincosf.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 48: __sincosf.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 49: __sincosf.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 50: __sincospif.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 51: __sincospif.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 52: __sincospif.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 53: __sincospif.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 54: __sincospif.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 55: __sincospif.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 56: __sincospif.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 57: __sincospif.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 58: __sincospif.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 59: __sincospif.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 60: __sincospif.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 61: __sincospif.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 62: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 63: __sincos.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 64: __sincos.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 65: __sincos.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 66: __sincos.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 67: __sincos.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 68: __sincos.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 69: __sincos.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 70: __sincos.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 71: __sincos.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 72: __sincos.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 73: __sincos.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 74: __sincos.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 75: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 76: ptr::non_null::NonNull::::new.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + +Check 77: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 78: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 79: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 80: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.1 + - Status: SUCCESS + - Description: "free argument must be NULL or valid pointer" + - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr + +Check 81: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.2 + - Status: SUCCESS + - Description: "free argument must be dynamic object" + - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr + +Check 82: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.3 + - Status: SUCCESS + - Description: "free argument has offset zero" + - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr + +Check 83: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.4 + - Status: SUCCESS + - Description: "double free" + - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr + +Check 84: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.5 + - Status: SUCCESS + - Description: "free called for new[] object" + - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr + +Check 85: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.6 + - Status: SUCCESS + - Description: "free called for stack-allocated object" + - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr + +Check 86: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 87: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 88: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 89: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 90: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 91: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 92: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 93: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 94: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 95: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 96: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 97: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 98: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 99: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 100: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 101: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 102: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 103: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 104: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 105: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 106: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 107: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 108: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 109: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} + +Check 110: option::Option::>::unwrap.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap + +Check 111: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 112: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 113: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 114: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 115: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 116: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 117: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 118: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 119: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 120: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 121: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 122: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 123: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 124: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 125: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 126: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 127: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + +Check 128: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} + + +SUMMARY: + ** 0 of 128 failed + +VERIFICATION:- SUCCESSFUL +Verification Time: 0.9216408s + +Checking harness ptr::non_null::verify::non_null_check_new... +CBMC 6.3.1 (cbmc-6.3.1) +CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos +Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify18non_null_check_new.out +Generating GOTO Program +Adding CPROVER library (x86_64) +Removal of function pointers and virtual functions +Generic Property Instrumentation +Running with 16 object bits, 48 offset bits (user-specified) +Starting Bounded Model Checking +aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 606 column 5 function option::Option::>::is_some thread 0 +aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 606 column 5 function option::Option::>::is_some thread 0 +aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 926 column 15 function option::Option::>::expect thread 0 +aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 2025 column 5 function option::expect_failed thread 0 +aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 928 column 21 function option::Option::>::expect thread 0 +Runtime Symex: 0.266486s +size of program expression: 2586 steps +slicing removed 1586 assignments +Generated 115 VCC(s), 28 remaining after simplification +Runtime Postprocess Equation: 0.00204007s +Passing problem to propositional reduction +converting SSA +Runtime Convert SSA: 3.14592s +Running propositional reduction +Post-processing +Runtime Post-process: 0.000284261s +Solving with CaDiCaL 2.0.0 +70514 variables, 4265292 clauses +SAT checker: instance is SATISFIABLE +Runtime Solver: 0.00464163s +Runtime decision procedure: 3.15262s +Running propositional reduction +Solving with CaDiCaL 2.0.0 +70515 variables, 4265293 clauses +SAT checker: instance is UNSATISFIABLE +Runtime Solver: 0.000274707s +Runtime decision procedure: 0.000526648s + +RESULTS: +Check 1: free.frees.1 + - Status: SUCCESS + - Description: "Check that ptr is freeable" + - Location: :43 in function free + +Check 2: __CPROVER_contracts_write_set_record_deallocated.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated + +Check 3: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} + +Check 4: __CPROVER_contracts_write_set_check_assignment.assertion.1 + - Status: SUCCESS + - Description: "ptr NULL or writable up to size" + - Location: :775 in function __CPROVER_contracts_write_set_check_assignment + +Check 5: __CPROVER_contracts_write_set_check_assignment.assertion.2 + - Status: SUCCESS + - Description: "CAR size is less than __CPROVER_max_malloc_size" + - Location: :792 in function __CPROVER_contracts_write_set_check_assignment + +Check 6: __CPROVER_contracts_write_set_check_assignment.assertion.3 + - Status: SUCCESS + - Description: "no offset bits overflow on CAR upper bound computation" + - Location: :798 in function __CPROVER_contracts_write_set_check_assignment + +Check 7: __CPROVER_contracts_write_set_check_assignment.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :807 in function __CPROVER_contracts_write_set_check_assignment + +Check 8: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 9: option::expect_failed.assertion.1 + - Status: SUCCESS + - Description: "This is a placeholder message; Kani doesn't support message formatted at runtime" + - Location: library/core/src/option.rs:2025:5 in function option::expect_failed + +Check 10: option::Option::>::is_some.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/option.rs:606:5 in function option::Option::>::is_some + +Check 11: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} + +Check 12: ptr::non_null::NonNull::::new::{closure#2}.assertion.1 + - Status: SUCCESS + - Description: "|result| result.is_some() == !ptr.is_null()" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 13: ptr::non_null::NonNull::::new::{closure#2}.assertion.2 + - Status: SUCCESS + - Description: "|result| result.is_none() || result.expect("ptr is null!").as_ptr() == ptr" + - Location: library/core/src/ptr/non_null.rs:231:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 14: >::new::{closure#2}::{closure#2}.single_top_level_call.1 + - Status: SUCCESS + - Description: "Only a single top-level call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE3news0_0s0_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE3news0_0s0_0Bd_" + - Location: library/core/src/ptr/non_null.rs:230:5 in function >::new::{closure#2}::{closure#2} + +Check 15: >::new::{closure#2}::{closure#2}.no_alloc_dealloc_in_requires.1 + - Status: SUCCESS + - Description: "Check that requires do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:230:5 in function >::new::{closure#2}::{closure#2} + +Check 16: >::new::{closure#2}::{closure#2}.no_alloc_dealloc_in_ensures.1 + - Status: SUCCESS + - Description: "Check that ensures do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:230:5 in function >::new::{closure#2}::{closure#2} + +Check 17: >::new::{closure#2}::{closure#2}.no_recursive_call.1 + - Status: SUCCESS + - Description: "No recursive call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE3news0_0s0_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE3news0_0s0_0Bd_" + - Location: library/core/src/ptr/non_null.rs:230:5 in function >::new::{closure#2}::{closure#2} + +Check 18: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 19: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 + - Status: SUCCESS + - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" + - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime + +Check 20: option::Option::>::expect.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/option.rs:926:15 in function option::Option::>::expect + +Check 21: fmt::Arguments::<'_>::new_const::<1>.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 22: ptr::non_null::NonNull::::new.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + +Check 23: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 24: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} + +Check 25: panic::location::Location::<'_>::caller.unsupported_construct.1 + - Status: SUCCESS + - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" + - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller + +Check 26: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} + +Check 27: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} + +Check 28: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} + +Check 29: __sincospif.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 30: __sincospif.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 31: __sincospif.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 32: __sincospif.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 33: __sincospif.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 34: __sincospif.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 35: __sincospif.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 36: __sincospif.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 37: __sincospif.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 38: __sincospif.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 39: __sincospif.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 40: __sincospif.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 41: __sincospi.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 42: __sincospi.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 43: __sincospi.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 44: __sincospi.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 45: __sincospi.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 46: __sincospi.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 47: __sincospi.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 48: __sincospi.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 49: __sincospi.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 50: __sincospi.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 51: __sincospi.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 52: __sincospi.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 53: __sincos.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 54: __sincos.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 55: __sincos.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 56: __sincos.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 57: __sincos.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 58: __sincos.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 59: __sincos.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 60: __sincos.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 61: __sincos.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 62: __sincos.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 63: __sincos.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 64: __sincos.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 65: __sincosf.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 66: __sincosf.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 67: __sincosf.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 68: __sincosf.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 69: __sincosf.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 70: __sincosf.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 71: __sincosf.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 72: __sincosf.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 73: __sincosf.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 74: __sincosf.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 75: __sincosf.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 76: __sincosf.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 77: ptr::non_null::verify::non_null_check_new.precondition_instance.1 + - Status: SUCCESS + - Description: "free argument must be NULL or valid pointer" + - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new + +Check 78: ptr::non_null::verify::non_null_check_new.precondition_instance.2 + - Status: SUCCESS + - Description: "free argument must be dynamic object" + - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new + +Check 79: ptr::non_null::verify::non_null_check_new.precondition_instance.3 + - Status: SUCCESS + - Description: "free argument has offset zero" + - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new + +Check 80: ptr::non_null::verify::non_null_check_new.precondition_instance.4 + - Status: SUCCESS + - Description: "double free" + - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new + +Check 81: ptr::non_null::verify::non_null_check_new.precondition_instance.5 + - Status: SUCCESS + - Description: "free called for new[] object" + - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new + +Check 82: ptr::non_null::verify::non_null_check_new.precondition_instance.6 + - Status: SUCCESS + - Description: "free called for stack-allocated object" + - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new + +Check 83: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 84: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 85: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 86: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 87: ptr::non_null::NonNull::::new.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new + +Check 88: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 89: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 90: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 91: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 92: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 93: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 94: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 95: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 96: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 97: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 98: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 99: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 100: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 101: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 102: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 103: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 104: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 105: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 106: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.19 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 107: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.20 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 108: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.21 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 109: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.22 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 110: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.23 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 111: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.24 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 112: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.25 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} + +Check 113: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 114: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 115: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 116: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 117: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 118: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 119: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 120: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 121: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 122: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 123: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 124: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 125: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 126: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 127: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 128: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 129: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 130: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} + +Check 131: option::Option::>::is_some.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some + +Check 132: option::Option::>::is_some.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some + +Check 133: option::Option::>::is_some.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some + +Check 134: option::Option::>::is_some.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some + +Check 135: option::Option::>::is_some.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some + +Check 136: option::Option::>::is_some.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some + +Check 137: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 138: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 139: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 140: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 141: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 142: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 143: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 144: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 145: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 146: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 147: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 148: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} + +Check 149: option::Option::>::expect.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/option.rs:926:15 in function option::Option::>::expect + +Check 150: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 151: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 152: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 153: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 154: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 155: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 156: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 157: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 158: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 159: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 160: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 161: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 162: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 163: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 164: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 165: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 166: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 167: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} + +Check 168: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + + +SUMMARY: + ** 0 of 168 failed + +VERIFICATION:- SUCCESSFUL +Verification Time: 10.438369s + +Checking harness ptr::non_null::verify::non_null_check_new_unchecked... +CBMC 6.3.1 (cbmc-6.3.1) +CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos +Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify28non_null_check_new_unchecked.out +Generating GOTO Program +Adding CPROVER library (x86_64) +Removal of function pointers and virtual functions +Generic Property Instrumentation +Running with 16 object bits, 48 offset bits (user-specified) +Starting Bounded Model Checking +Runtime Symex: 0.118749s +size of program expression: 1249 steps +slicing removed 716 assignments +Generated 75 VCC(s), 10 remaining after simplification +Runtime Postprocess Equation: 0.000619235s +Passing problem to propositional reduction +converting SSA +Runtime Convert SSA: 0.00971251s +Running propositional reduction +Post-processing +Runtime Post-process: 3.8306e-05s +Solving with CaDiCaL 2.0.0 +2849 variables, 3582 clauses +SAT checker: instance is SATISFIABLE +Runtime Solver: 0.000443562s +Runtime decision procedure: 0.0104222s +Running propositional reduction +Solving with CaDiCaL 2.0.0 +2850 variables, 3583 clauses +SAT checker: instance is UNSATISFIABLE +Runtime Solver: 0.00017165s +Runtime decision procedure: 0.000272145s + +RESULTS: +Check 1: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} + +Check 2: free.frees.1 + - Status: SUCCESS + - Description: "Check that ptr is freeable" + - Location: :43 in function free + +Check 3: __CPROVER_contracts_write_set_record_deallocated.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated + +Check 4: __CPROVER_contracts_write_set_check_assignment.assertion.1 + - Status: SUCCESS + - Description: "ptr NULL or writable up to size" + - Location: :775 in function __CPROVER_contracts_write_set_check_assignment + +Check 5: __CPROVER_contracts_write_set_check_assignment.assertion.2 + - Status: SUCCESS + - Description: "CAR size is less than __CPROVER_max_malloc_size" + - Location: :792 in function __CPROVER_contracts_write_set_check_assignment + +Check 6: __CPROVER_contracts_write_set_check_assignment.assertion.3 + - Status: SUCCESS + - Description: "no offset bits overflow on CAR upper bound computation" + - Location: :798 in function __CPROVER_contracts_write_set_check_assignment + +Check 7: __CPROVER_contracts_write_set_check_assignment.unwind.1 + - Status: SUCCESS + - Description: "unwinding assertion loop 0" + - Location: :807 in function __CPROVER_contracts_write_set_check_assignment + +Check 8: panic::location::Location::<'_>::caller.unsupported_construct.1 + - Status: SUCCESS + - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" + - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller + +Check 9: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} + +Check 10: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 + - Status: SUCCESS + - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" + - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime + +Check 11: ptr::non_null::NonNull::::new_unchecked::{closure#2}.assertion.1 + - Status: SUCCESS + - Description: "|result| result.as_ptr() == ptr" + - Location: library/core/src/ptr/non_null.rs:200:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 12: >::new_unchecked::{closure#2}::{closure#1}.single_top_level_call.1 + - Status: SUCCESS + - Description: "Only a single top-level call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE13new_uncheckeds0_0s_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE13new_uncheckeds0_0s_0Bd_" + - Location: library/core/src/ptr/non_null.rs:199:5 in function >::new_unchecked::{closure#2}::{closure#1} + +Check 13: >::new_unchecked::{closure#2}::{closure#1}.no_alloc_dealloc_in_requires.1 + - Status: SUCCESS + - Description: "Check that requires do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:199:5 in function >::new_unchecked::{closure#2}::{closure#1} + +Check 14: >::new_unchecked::{closure#2}::{closure#1}.no_alloc_dealloc_in_ensures.1 + - Status: SUCCESS + - Description: "Check that ensures do not allocate or deallocate memory" + - Location: library/core/src/ptr/non_null.rs:199:5 in function >::new_unchecked::{closure#2}::{closure#1} + +Check 15: >::new_unchecked::{closure#2}::{closure#1}.no_recursive_call.1 + - Status: SUCCESS + - Description: "No recursive call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE13new_uncheckeds0_0s_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE13new_uncheckeds0_0s_0Bd_" + - Location: library/core/src/ptr/non_null.rs:199:5 in function >::new_unchecked::{closure#2}::{closure#1} + +Check 16: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} + +Check 17: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} + +Check 18: fmt::Arguments::<'_>::new_const::<1>.assigns.1 + - Status: SUCCESS + - Description: "Check that *((unsigned char **)&temp_0) is assignable" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 19: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 + - Status: SUCCESS + - Description: "unreachable code" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} + +Check 20: __sincos.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 21: __sincos.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 22: __sincos.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 23: __sincos.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 24: __sincos.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 25: __sincos.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 26: __sincos.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 27: __sincos.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 28: __sincos.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 29: __sincos.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 30: __sincos.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 31: __sincos.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos + +Check 32: __sincospif.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 33: __sincospif.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 34: __sincospif.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 35: __sincospif.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 36: __sincospif.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 37: __sincospif.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 38: __sincospif.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 39: __sincospif.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 40: __sincospif.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 41: __sincospif.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 42: __sincospif.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 43: __sincospif.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif + +Check 44: __sincospi.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 45: __sincospi.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 46: __sincospi.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 47: __sincospi.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 48: __sincospi.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 49: __sincospi.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 50: __sincospi.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 51: __sincospi.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 52: __sincospi.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 53: __sincospi.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 54: __sincospi.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 55: __sincospi.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi + +Check 56: __sincosf.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 57: __sincosf.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 58: __sincosf.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 59: __sincosf.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 60: __sincosf.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 61: __sincosf.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 62: __sincosf.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 63: __sincosf.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 64: __sincosf.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 65: __sincosf.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 66: __sincosf.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 67: __sincosf.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf + +Check 68: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> + +Check 69: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 70: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 71: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 72: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 + - Status: SUCCESS + - Description: "count leading zeros is undefined for value zero" + - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id + +Check 73: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 74: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 75: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 76: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 77: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 78: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 79: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 80: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 81: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 82: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 83: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 84: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 85: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 86: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 87: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 88: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 89: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 90: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 91: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.19 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 92: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.20 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 93: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.21 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 94: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.22 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 95: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.23 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 96: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.24 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} + +Check 97: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.1 + - Status: SUCCESS + - Description: "free argument must be NULL or valid pointer" + - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked + +Check 98: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.2 + - Status: SUCCESS + - Description: "free argument must be dynamic object" + - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked + +Check 99: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.3 + - Status: SUCCESS + - Description: "free argument has offset zero" + - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked + +Check 100: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.4 + - Status: SUCCESS + - Description: "double free" + - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked + +Check 101: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.5 + - Status: SUCCESS + - Description: "free called for new[] object" + - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked + +Check 102: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.6 + - Status: SUCCESS + - Description: "free called for stack-allocated object" + - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked + +Check 103: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 104: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 105: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 106: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 107: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 108: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 109: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 110: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 111: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 112: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 113: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 114: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 115: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 116: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 117: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 118: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 119: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 120: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 121: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.19 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 122: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.20 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 123: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.21 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 124: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.22 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 125: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.23 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 126: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.24 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} + +Check 127: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.1 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 128: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.2 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 129: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.3 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 130: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.4 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 131: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.5 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 132: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.6 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 133: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.7 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 134: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.8 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 135: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.9 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 136: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.10 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 137: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.11 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 138: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.12 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 139: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.13 + - Status: SUCCESS + - Description: "dereference failure: pointer NULL" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 140: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.14 + - Status: SUCCESS + - Description: "dereference failure: pointer invalid" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 141: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.15 + - Status: SUCCESS + - Description: "dereference failure: deallocated dynamic object" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 142: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.16 + - Status: SUCCESS + - Description: "dereference failure: dead object" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 143: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.17 + - Status: SUCCESS + - Description: "dereference failure: pointer outside object bounds" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + +Check 144: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.18 + - Status: SUCCESS + - Description: "dereference failure: invalid integer address" + - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} + + +SUMMARY: + ** 0 of 144 failed + +VERIFICATION:- SUCCESSFUL +Verification Time: 0.7228405s + +Complete - 6 successfully verified harnesses, 0 failures, 6 total. From 8a21bc61e7ebb18ac1b87ecd5bdc809b1ed47478 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:29:19 -0700 Subject: [PATCH 03/29] Delete verify-error.log --- verify-error.log | 4651 ---------------------------------------------- 1 file changed, 4651 deletions(-) delete mode 100644 verify-error.log diff --git a/verify-error.log b/verify-error.log deleted file mode 100644 index cdface1356641..0000000000000 --- a/verify-error.log +++ /dev/null @@ -1,4651 +0,0 @@ -Kani Rust Verifier 0.56.0 (standalone) -Checking harness ptr::non_null::verify::non_null_check_as_non_null_ptr... -CBMC 6.3.1 (cbmc-6.3.1) -CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos -Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify30non_null_check_as_non_null_ptr.out -Generating GOTO Program -Adding CPROVER library (x86_64) -Removal of function pointers and virtual functions -Generic Property Instrumentation -Running with 16 object bits, 48 offset bits (user-specified) -Starting Bounded Model Checking -Runtime Symex: 0.180219s -size of program expression: 1669 steps -slicing removed 1043 assignments -Generated 64 VCC(s), 9 remaining after simplification -Runtime Postprocess Equation: 0.000590924s -Passing problem to propositional reduction -converting SSA -Runtime Convert SSA: 0.0118913s -Running propositional reduction -Post-processing -Runtime Post-process: 3.6194e-05s -Solving with CaDiCaL 2.0.0 -4210 variables, 4443 clauses -SAT checker: instance is SATISFIABLE -Runtime Solver: 0.0012069s -Runtime decision procedure: 0.013384s -Running propositional reduction -Solving with CaDiCaL 2.0.0 -4211 variables, 4444 clauses -SAT checker: instance is UNSATISFIABLE -Runtime Solver: 7.9463e-05s -Runtime decision procedure: 0.000142946s - -RESULTS: -Check 1: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 2: __CPROVER_contracts_write_set_check_assignment.assertion.1 - - Status: SUCCESS - - Description: "ptr NULL or writable up to size" - - Location: :775 in function __CPROVER_contracts_write_set_check_assignment - -Check 3: __CPROVER_contracts_write_set_check_assignment.assertion.2 - - Status: SUCCESS - - Description: "CAR size is less than __CPROVER_max_malloc_size" - - Location: :792 in function __CPROVER_contracts_write_set_check_assignment - -Check 4: __CPROVER_contracts_write_set_check_assignment.assertion.3 - - Status: SUCCESS - - Description: "no offset bits overflow on CAR upper bound computation" - - Location: :798 in function __CPROVER_contracts_write_set_check_assignment - -Check 5: __CPROVER_contracts_write_set_check_assignment.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :807 in function __CPROVER_contracts_write_set_check_assignment - -Check 6: __CPROVER_contracts_write_set_record_deallocated.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated - -Check 7: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#1} - -Check 8: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#0} - -Check 9: ptr::non_null::NonNull::<[i32]>::cast::::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#2} - -Check 10: panic::location::Location::<'_>::caller.unsupported_construct.1 - - Status: SUCCESS - - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" - - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller - -Check 11: ptr::non_null::NonNull::::new::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 12: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} - -Check 13: fmt::Arguments::<'_>::new_const::<1>.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 14: ptr::non_null::NonNull::<[i32]>::cast::::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#1} - -Check 15: free.frees.1 - - Status: SUCCESS - - Description: "Check that ptr is freeable" - - Location: :43 in function free - -Check 16: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} - -Check 17: >::as_non_null_ptr::{closure#2}::{closure#1}.single_top_level_call.1 - - Status: SUCCESS - - Description: "Only a single top-level call to function _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE15as_non_null_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE15as_non_null_ptrs0_0s_0Bd_" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function >::as_non_null_ptr::{closure#2}::{closure#1} - -Check 18: >::as_non_null_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_requires.1 - - Status: SUCCESS - - Description: "Check that requires do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function >::as_non_null_ptr::{closure#2}::{closure#1} - -Check 19: >::as_non_null_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_ensures.1 - - Status: SUCCESS - - Description: "Check that ensures do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function >::as_non_null_ptr::{closure#2}::{closure#1} - -Check 20: >::as_non_null_ptr::{closure#2}::{closure#1}.no_recursive_call.1 - - Status: SUCCESS - - Description: "No recursive call to function _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE15as_non_null_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE15as_non_null_ptrs0_0s_0Bd_" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function >::as_non_null_ptr::{closure#2}::{closure#1} - -Check 21: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#0} - -Check 22: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 - - Status: SUCCESS - - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" - - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime - -Check 23: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#2} - -Check 24: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#2} - -Check 25: option::unwrap_failed.assertion.1 - - Status: SUCCESS - - Description: "called `Option::unwrap()` on a `None` value" - - Location: library/core/src/option.rs:2015:5 in function option::unwrap_failed - -Check 26: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} - -Check 27: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} - -Check 28: ptr::non_null::NonNull::<[i32]>::cast::::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#0} - -Check 29: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#1} - -Check 30: ptr::non_null::NonNull::::new.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - -Check 31: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} - -Check 32: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.assertion.1 - - Status: SUCCESS - - Description: "|result: &NonNull| result.as_ptr() as *const () as usize == self.pointer as -*const () as usize" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 33: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#0} - -Check 34: option::Option::>::unwrap.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap - -Check 35: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 36: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} - -Check 37: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#1} - -Check 38: __sincospi.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 39: __sincospi.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 40: __sincospi.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 41: __sincospi.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 42: __sincospi.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 43: __sincospi.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 44: __sincospi.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 45: __sincospi.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 46: __sincospi.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 47: __sincospi.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 48: __sincospi.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 49: __sincospi.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 50: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 51: __sincosf.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 52: __sincosf.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 53: __sincosf.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 54: __sincosf.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 55: __sincosf.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 56: __sincosf.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 57: __sincosf.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 58: __sincosf.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 59: __sincosf.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 60: __sincosf.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 61: __sincosf.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 62: __sincosf.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 63: __sincos.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 64: __sincos.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 65: __sincos.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 66: __sincos.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 67: __sincos.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 68: __sincos.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 69: __sincos.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 70: __sincos.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 71: __sincos.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 72: __sincos.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 73: __sincos.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 74: __sincos.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 75: __sincospif.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 76: __sincospif.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 77: __sincospif.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 78: __sincospif.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 79: __sincospif.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 80: __sincospif.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 81: __sincospif.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 82: __sincospif.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 83: __sincospif.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 84: __sincospif.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 85: __sincospif.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 86: __sincospif.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 87: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 88: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 89: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 90: option::Option::>::unwrap.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap - -Check 91: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.1 - - Status: SUCCESS - - Description: "free argument must be NULL or valid pointer" - - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr - -Check 92: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.2 - - Status: SUCCESS - - Description: "free argument must be dynamic object" - - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr - -Check 93: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.3 - - Status: SUCCESS - - Description: "free argument has offset zero" - - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr - -Check 94: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.4 - - Status: SUCCESS - - Description: "double free" - - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr - -Check 95: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.5 - - Status: SUCCESS - - Description: "free called for new[] object" - - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr - -Check 96: ptr::non_null::verify::non_null_check_as_non_null_ptr.precondition_instance.6 - - Status: SUCCESS - - Description: "free called for stack-allocated object" - - Location: library/core/src/ptr/non_null.rs:1878:5 in function ptr::non_null::verify::non_null_check_as_non_null_ptr - -Check 97: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 98: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 99: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 100: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 101: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 102: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 103: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1541:37 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 104: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 105: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 106: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 107: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 108: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 109: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 110: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 111: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 112: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 113: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 114: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 115: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1541:78 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#0} - -Check 116: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 117: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 118: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 119: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 120: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 121: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 122: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 123: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 124: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 125: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 126: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 127: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1543:9 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}::{closure#1} - -Check 128: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 129: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 130: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 131: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 132: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 133: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 134: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 135: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 136: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 137: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 138: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 139: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1541:15 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 140: ptr::non_null::NonNull::::new.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - - -SUMMARY: - ** 0 of 140 failed - -VERIFICATION:- SUCCESSFUL -Verification Time: 1.1664202s - -Checking harness ptr::non_null::verify::non_null_check_cast... -CBMC 6.3.1 (cbmc-6.3.1) -CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos -Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify19non_null_check_cast.out -Generating GOTO Program -Adding CPROVER library (x86_64) -Removal of function pointers and virtual functions -Generic Property Instrumentation -Running with 16 object bits, 48 offset bits (user-specified) -Starting Bounded Model Checking -Runtime Symex: 0.185839s -size of program expression: 1595 steps -slicing removed 989 assignments -Generated 88 VCC(s), 17 remaining after simplification -Runtime Postprocess Equation: 0.000701615s -Passing problem to propositional reduction -converting SSA -Runtime Convert SSA: 0.0134702s -Running propositional reduction -Post-processing -Runtime Post-process: 3.0503e-05s -Solving with CaDiCaL 2.0.0 -3630 variables, 3863 clauses -SAT checker: instance is SATISFIABLE -Runtime Solver: 0.000447864s -Runtime decision procedure: 0.0142278s -Running propositional reduction -Solving with CaDiCaL 2.0.0 -3631 variables, 3864 clauses -SAT checker: instance is UNSATISFIABLE -Runtime Solver: 9.6396e-05s -Runtime decision procedure: 0.000173584s - -RESULTS: -Check 1: __CPROVER_contracts_write_set_check_assignment.assertion.1 - - Status: SUCCESS - - Description: "ptr NULL or writable up to size" - - Location: :775 in function __CPROVER_contracts_write_set_check_assignment - -Check 2: __CPROVER_contracts_write_set_check_assignment.assertion.2 - - Status: SUCCESS - - Description: "CAR size is less than __CPROVER_max_malloc_size" - - Location: :792 in function __CPROVER_contracts_write_set_check_assignment - -Check 3: __CPROVER_contracts_write_set_check_assignment.assertion.3 - - Status: SUCCESS - - Description: "no offset bits overflow on CAR upper bound computation" - - Location: :798 in function __CPROVER_contracts_write_set_check_assignment - -Check 4: __CPROVER_contracts_write_set_check_assignment.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :807 in function __CPROVER_contracts_write_set_check_assignment - -Check 5: free.frees.1 - - Status: SUCCESS - - Description: "Check that ptr is freeable" - - Location: :43 in function free - -Check 6: fmt::Arguments::<'_>::new_const::<1>.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 7: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 8: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} - -Check 9: ptr::non_null::NonNull::::cast::::{closure#2}.assertion.1 - - Status: SUCCESS - - Description: "|result: &NonNull| result.as_ptr() as *const () as usize == self.as_ptr() -as *const () as usize" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 10: ptr::non_null::NonNull::::cast::::{closure#2}.assertion.2 - - Status: SUCCESS - - Description: "|result: &NonNull| (self.as_ptr() as *const () as usize) % -core::mem::align_of::() == 0" - - Location: library/core/src/ptr/non_null.rs:437:5 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 11: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 12: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.assertion.1 - - Status: SUCCESS - - Description: "attempt to calculate the remainder with a divisor of zero" - - Location: library/core/src/ptr/non_null.rs:437:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 13: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.arithmetic_overflow.1 - - Status: SUCCESS - - Description: "attempt to calculate the remainder with a divisor of zero" - - Location: library/core/src/ptr/non_null.rs:437:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 14: __CPROVER_contracts_write_set_record_deallocated.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated - -Check 15: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} - -Check 16: option::Option::>::unwrap.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap - -Check 17: ptr::non_null::NonNull::::cast::::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#1} - -Check 18: panic::location::Location::<'_>::caller.unsupported_construct.1 - - Status: SUCCESS - - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" - - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller - -Check 19: option::unwrap_failed.assertion.1 - - Status: SUCCESS - - Description: "called `Option::unwrap()` on a `None` value" - - Location: library/core/src/option.rs:2015:5 in function option::unwrap_failed - -Check 20: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} - -Check 21: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} - -Check 22: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} - -Check 23: ptr::non_null::NonNull::::new.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - -Check 24: >::cast::::{closure#2}::{closure#2}.single_top_level_call.1 - - Status: SUCCESS - - Description: "Only a single top-level call to function _RNCNCINvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtBa_7NonNulllE4casthEs0_0s0_0Be_ when checking contract _RNCNCINvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtBa_7NonNulllE4casthEs0_0s0_0Be_" - - Location: library/core/src/ptr/non_null.rs:435:5 in function >::cast::::{closure#2}::{closure#2} - -Check 25: >::cast::::{closure#2}::{closure#2}.no_alloc_dealloc_in_requires.1 - - Status: SUCCESS - - Description: "Check that requires do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:435:5 in function >::cast::::{closure#2}::{closure#2} - -Check 26: >::cast::::{closure#2}::{closure#2}.no_alloc_dealloc_in_ensures.1 - - Status: SUCCESS - - Description: "Check that ensures do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:435:5 in function >::cast::::{closure#2}::{closure#2} - -Check 27: >::cast::::{closure#2}::{closure#2}.no_recursive_call.1 - - Status: SUCCESS - - Description: "No recursive call to function _RNCNCINvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtBa_7NonNulllE4casthEs0_0s0_0Be_ when checking contract _RNCNCINvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtBa_7NonNulllE4casthEs0_0s0_0Be_" - - Location: library/core/src/ptr/non_null.rs:435:5 in function >::cast::::{closure#2}::{closure#2} - -Check 28: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 - - Status: SUCCESS - - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" - - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime - -Check 29: ptr::non_null::NonNull::::new::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 30: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} - -Check 31: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} - -Check 32: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} - -Check 33: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 34: ptr::non_null::NonNull::::cast::::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#0} - -Check 35: __sincosf.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 36: __sincosf.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 37: __sincosf.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 38: __sincosf.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 39: __sincosf.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 40: __sincosf.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 41: __sincosf.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 42: __sincosf.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 43: __sincosf.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 44: __sincosf.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 45: __sincosf.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 46: __sincosf.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 47: __sincos.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 48: __sincos.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 49: __sincos.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 50: __sincos.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 51: __sincos.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 52: __sincos.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 53: __sincos.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 54: __sincos.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 55: __sincos.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 56: __sincos.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 57: __sincos.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 58: __sincos.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 59: __sincospi.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 60: __sincospi.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 61: __sincospi.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 62: __sincospi.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 63: __sincospi.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 64: __sincospi.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 65: __sincospi.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 66: __sincospi.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 67: __sincospi.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 68: __sincospi.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 69: __sincospi.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 70: __sincospi.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 71: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 72: __sincospif.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 73: __sincospif.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 74: __sincospif.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 75: __sincospif.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 76: __sincospif.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 77: __sincospif.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 78: __sincospif.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 79: __sincospif.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 80: __sincospif.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 81: __sincospif.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 82: __sincospif.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 83: __sincospif.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 84: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 85: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 86: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 87: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 88: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 89: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 90: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 91: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 92: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:435:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 93: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 94: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 95: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 96: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 97: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 98: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 99: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 100: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 101: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 102: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 103: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 104: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:435:78 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#0} - -Check 105: option::Option::>::unwrap.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap - -Check 106: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 107: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 108: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 109: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 110: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 111: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 112: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 113: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 114: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 115: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 116: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 117: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:437:38 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 118: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1}.division-by-zero.1 - - Status: SUCCESS - - Description: "division by zero" - - Location: library/core/src/ptr/non_null.rs:437:37 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#1} - -Check 119: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 120: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 121: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 122: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 123: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 124: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 125: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 126: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 127: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 128: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 129: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 130: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:435:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 131: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 132: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 133: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 134: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 135: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 136: ptr::non_null::NonNull::::cast::::{closure#2}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:437:15 in function ptr::non_null::NonNull::::cast::::{closure#2} - -Check 137: ptr::non_null::NonNull::::new.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - -Check 138: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 139: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 140: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 141: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 142: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 143: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 144: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 145: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 146: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 147: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 148: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 149: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 150: ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:442:26 in function ptr::non_null::NonNull::::cast::::{closure#2}::{closure#2} - -Check 151: ptr::non_null::verify::non_null_check_cast.precondition_instance.1 - - Status: SUCCESS - - Description: "free argument must be NULL or valid pointer" - - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast - -Check 152: ptr::non_null::verify::non_null_check_cast.precondition_instance.2 - - Status: SUCCESS - - Description: "free argument must be dynamic object" - - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast - -Check 153: ptr::non_null::verify::non_null_check_cast.precondition_instance.3 - - Status: SUCCESS - - Description: "free argument has offset zero" - - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast - -Check 154: ptr::non_null::verify::non_null_check_cast.precondition_instance.4 - - Status: SUCCESS - - Description: "double free" - - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast - -Check 155: ptr::non_null::verify::non_null_check_cast.precondition_instance.5 - - Status: SUCCESS - - Description: "free called for new[] object" - - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast - -Check 156: ptr::non_null::verify::non_null_check_cast.precondition_instance.6 - - Status: SUCCESS - - Description: "free called for stack-allocated object" - - Location: library/core/src/ptr/non_null.rs:1870:5 in function ptr::non_null::verify::non_null_check_cast - - -SUMMARY: - ** 0 of 156 failed - -VERIFICATION:- SUCCESSFUL -Verification Time: 1.2068224s - -Checking harness ptr::non_null::verify::non_null_check_as_mut_ptr... -CBMC 6.3.1 (cbmc-6.3.1) -CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos -Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify25non_null_check_as_mut_ptr.out -Generating GOTO Program -Adding CPROVER library (x86_64) -Removal of function pointers and virtual functions -Generic Property Instrumentation -Running with 16 object bits, 48 offset bits (user-specified) -Starting Bounded Model Checking -Runtime Symex: 0.239313s -size of program expression: 1857 steps -slicing removed 1144 assignments -Generated 64 VCC(s), 9 remaining after simplification -Runtime Postprocess Equation: 0.00113575s -Passing problem to propositional reduction -converting SSA -Runtime Convert SSA: 0.0171243s -Running propositional reduction -Post-processing -Runtime Post-process: 9.8933e-05s -Solving with CaDiCaL 2.0.0 -4989 variables, 5233 clauses -SAT checker: instance is SATISFIABLE -Runtime Solver: 0.000798177s -Runtime decision procedure: 0.0199405s -Running propositional reduction -Solving with CaDiCaL 2.0.0 -4990 variables, 5234 clauses -SAT checker: instance is UNSATISFIABLE -Runtime Solver: 8.5418e-05s -Runtime decision procedure: 0.000165653s - -RESULTS: -Check 1: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#1} - -Check 2: ptr::non_null::NonNull::<[i32]>::cast::::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#0} - -Check 3: free.frees.1 - - Status: SUCCESS - - Description: "Check that ptr is freeable" - - Location: :43 in function free - -Check 4: __CPROVER_contracts_write_set_record_deallocated.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated - -Check 5: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#0} - -Check 6: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} - -Check 7: fmt::Arguments::<'_>::new_const::<1>.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 8: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.assertion.1 - - Status: SUCCESS - - Description: "|result: &*mut T| *result == self.pointer as *mut T" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 9: __CPROVER_contracts_write_set_check_assignment.assertion.1 - - Status: SUCCESS - - Description: "ptr NULL or writable up to size" - - Location: :775 in function __CPROVER_contracts_write_set_check_assignment - -Check 10: __CPROVER_contracts_write_set_check_assignment.assertion.2 - - Status: SUCCESS - - Description: "CAR size is less than __CPROVER_max_malloc_size" - - Location: :792 in function __CPROVER_contracts_write_set_check_assignment - -Check 11: __CPROVER_contracts_write_set_check_assignment.assertion.3 - - Status: SUCCESS - - Description: "no offset bits overflow on CAR upper bound computation" - - Location: :798 in function __CPROVER_contracts_write_set_check_assignment - -Check 12: __CPROVER_contracts_write_set_check_assignment.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :807 in function __CPROVER_contracts_write_set_check_assignment - -Check 13: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} - -Check 14: >::as_mut_ptr::{closure#2}::{closure#1}.single_top_level_call.1 - - Status: SUCCESS - - Description: "Only a single top-level call to function _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE10as_mut_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE10as_mut_ptrs0_0s_0Bd_" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function >::as_mut_ptr::{closure#2}::{closure#1} - -Check 15: >::as_mut_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_requires.1 - - Status: SUCCESS - - Description: "Check that requires do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function >::as_mut_ptr::{closure#2}::{closure#1} - -Check 16: >::as_mut_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_ensures.1 - - Status: SUCCESS - - Description: "Check that ensures do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function >::as_mut_ptr::{closure#2}::{closure#1} - -Check 17: >::as_mut_ptr::{closure#2}::{closure#1}.no_recursive_call.1 - - Status: SUCCESS - - Description: "No recursive call to function _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE10as_mut_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs2_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNullSlE10as_mut_ptrs0_0s_0Bd_" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function >::as_mut_ptr::{closure#2}::{closure#1} - -Check 18: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 19: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 20: ptr::non_null::NonNull::<[i32]>::cast::::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#2} - -Check 21: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#1} - -Check 22: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} - -Check 23: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#2} - -Check 24: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#2} - -Check 25: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#2} - -Check 26: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} - -Check 27: ptr::non_null::NonNull::<[i32]>::cast::::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:435:5 in function ptr::non_null::NonNull::<[i32]>::cast::::{closure#1} - -Check 28: option::Option::>::unwrap.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap - -Check 29: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 - - Status: SUCCESS - - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" - - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime - -Check 30: ptr::non_null::NonNull::::new::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 31: option::unwrap_failed.assertion.1 - - Status: SUCCESS - - Description: "called `Option::unwrap()` on a `None` value" - - Location: library/core/src/option.rs:2015:5 in function option::unwrap_failed - -Check 32: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#0} - -Check 33: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#0} - -Check 34: ptr::non_null::NonNull::::new.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - -Check 35: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} - -Check 36: panic::location::Location::<'_>::caller.unsupported_construct.1 - - Status: SUCCESS - - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" - - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller - -Check 37: ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::<[i32]>::new_unchecked::{closure#1} - -Check 38: ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:1541:5 in function ptr::non_null::NonNull::<[i32]>::as_non_null_ptr::{closure#1} - -Check 39: ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::<[i32]>::as_ptr::{closure#0} - -Check 40: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} - -Check 41: __sincospi.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 42: __sincospi.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 43: __sincospi.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 44: __sincospi.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 45: __sincospi.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 46: __sincospi.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 47: __sincospi.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 48: __sincospi.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 49: __sincospi.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 50: __sincospi.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 51: __sincospi.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 52: __sincospi.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 53: __sincos.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 54: __sincos.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 55: __sincos.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 56: __sincos.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 57: __sincos.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 58: __sincos.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 59: __sincos.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 60: __sincos.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 61: __sincos.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 62: __sincos.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 63: __sincos.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 64: __sincos.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 65: __sincosf.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 66: __sincosf.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 67: __sincosf.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 68: __sincosf.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 69: __sincosf.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 70: __sincosf.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 71: __sincosf.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 72: __sincosf.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 73: __sincosf.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 74: __sincosf.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 75: __sincosf.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 76: __sincosf.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 77: __sincospif.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 78: __sincospif.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 79: __sincospif.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 80: __sincospif.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 81: __sincospif.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 82: __sincospif.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 83: __sincospif.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 84: __sincospif.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 85: __sincospif.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 86: __sincospif.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 87: __sincospif.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 88: __sincospif.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 89: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 90: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 91: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 92: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.1 - - Status: SUCCESS - - Description: "free argument must be NULL or valid pointer" - - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr - -Check 93: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.2 - - Status: SUCCESS - - Description: "free argument must be dynamic object" - - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr - -Check 94: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.3 - - Status: SUCCESS - - Description: "free argument has offset zero" - - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr - -Check 95: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.4 - - Status: SUCCESS - - Description: "double free" - - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr - -Check 96: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.5 - - Status: SUCCESS - - Description: "free called for new[] object" - - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr - -Check 97: ptr::non_null::verify::non_null_check_as_mut_ptr.precondition_instance.6 - - Status: SUCCESS - - Description: "free called for stack-allocated object" - - Location: library/core/src/ptr/non_null.rs:1860:5 in function ptr::non_null::verify::non_null_check_as_mut_ptr - -Check 98: ptr::non_null::NonNull::::new.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - -Check 99: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 100: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 101: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 102: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 103: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 104: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 105: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 106: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 107: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 108: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 109: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 110: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 111: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1565:9 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#1} - -Check 112: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 113: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 114: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 115: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 116: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 117: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1563:33 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 118: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 119: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 120: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 121: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 122: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 123: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 124: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 125: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 126: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 127: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 128: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 129: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1563:44 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}::{closure#0} - -Check 130: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 131: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 132: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 133: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 134: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 135: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1563:5 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 136: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 137: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 138: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 139: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 140: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 141: ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:1563:15 in function ptr::non_null::NonNull::<[i32]>::as_mut_ptr::{closure#2} - -Check 142: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 143: option::Option::>::unwrap.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap - - -SUMMARY: - ** 0 of 143 failed - -VERIFICATION:- SUCCESSFUL -Verification Time: 1.3654947s - -Checking harness ptr::non_null::verify::non_null_check_as_ptr... -CBMC 6.3.1 (cbmc-6.3.1) -CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos -Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify21non_null_check_as_ptr.out -Generating GOTO Program -Adding CPROVER library (x86_64) -Removal of function pointers and virtual functions -Generic Property Instrumentation -Running with 16 object bits, 48 offset bits (user-specified) -Starting Bounded Model Checking -Runtime Symex: 0.143461s -size of program expression: 1442 steps -slicing removed 868 assignments -Generated 64 VCC(s), 9 remaining after simplification -Runtime Postprocess Equation: 0.000657609s -Passing problem to propositional reduction -converting SSA -Runtime Convert SSA: 0.00933137s -Running propositional reduction -Post-processing -Runtime Post-process: 2.8274e-05s -Solving with CaDiCaL 2.0.0 -2784 variables, 2999 clauses -SAT checker: instance is SATISFIABLE -Runtime Solver: 0.00164581s -Runtime decision procedure: 0.0113016s -Running propositional reduction -Solving with CaDiCaL 2.0.0 -2785 variables, 3000 clauses -SAT checker: instance is UNSATISFIABLE -Runtime Solver: 0.000133719s -Runtime decision procedure: 0.000234027s - -RESULTS: -Check 1: free.frees.1 - - Status: SUCCESS - - Description: "Check that ptr is freeable" - - Location: :43 in function free - -Check 2: __CPROVER_contracts_write_set_check_assignment.assertion.1 - - Status: SUCCESS - - Description: "ptr NULL or writable up to size" - - Location: :775 in function __CPROVER_contracts_write_set_check_assignment - -Check 3: __CPROVER_contracts_write_set_check_assignment.assertion.2 - - Status: SUCCESS - - Description: "CAR size is less than __CPROVER_max_malloc_size" - - Location: :792 in function __CPROVER_contracts_write_set_check_assignment - -Check 4: __CPROVER_contracts_write_set_check_assignment.assertion.3 - - Status: SUCCESS - - Description: "no offset bits overflow on CAR upper bound computation" - - Location: :798 in function __CPROVER_contracts_write_set_check_assignment - -Check 5: __CPROVER_contracts_write_set_check_assignment.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :807 in function __CPROVER_contracts_write_set_check_assignment - -Check 6: __CPROVER_contracts_write_set_record_deallocated.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated - -Check 7: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 8: option::Option::>::unwrap.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap - -Check 9: ptr::non_null::NonNull::::as_ptr::{closure#2}.assertion.1 - - Status: SUCCESS - - Description: "|result: &*mut T| *result == self.pointer as *mut T" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 10: >::as_ptr::{closure#2}::{closure#1}.single_top_level_call.1 - - Status: SUCCESS - - Description: "Only a single top-level call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE6as_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE6as_ptrs0_0s_0Bd_" - - Location: library/core/src/ptr/non_null.rs:337:5 in function >::as_ptr::{closure#2}::{closure#1} - -Check 11: >::as_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_requires.1 - - Status: SUCCESS - - Description: "Check that requires do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:337:5 in function >::as_ptr::{closure#2}::{closure#1} - -Check 12: >::as_ptr::{closure#2}::{closure#1}.no_alloc_dealloc_in_ensures.1 - - Status: SUCCESS - - Description: "Check that ensures do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:337:5 in function >::as_ptr::{closure#2}::{closure#1} - -Check 13: >::as_ptr::{closure#2}::{closure#1}.no_recursive_call.1 - - Status: SUCCESS - - Description: "No recursive call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE6as_ptrs0_0s_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE6as_ptrs0_0s_0Bd_" - - Location: library/core/src/ptr/non_null.rs:337:5 in function >::as_ptr::{closure#2}::{closure#1} - -Check 14: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} - -Check 15: option::unwrap_failed.assertion.1 - - Status: SUCCESS - - Description: "called `Option::unwrap()` on a `None` value" - - Location: library/core/src/option.rs:2015:5 in function option::unwrap_failed - -Check 16: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} - -Check 17: panic::location::Location::<'_>::caller.unsupported_construct.1 - - Status: SUCCESS - - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" - - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller - -Check 18: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} - -Check 19: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} - -Check 20: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} - -Check 21: ptr::non_null::NonNull::::new.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - -Check 22: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 - - Status: SUCCESS - - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" - - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime - -Check 23: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} - -Check 24: ptr::non_null::NonNull::::new::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 25: fmt::Arguments::<'_>::new_const::<1>.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 26: __sincospi.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 27: __sincospi.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 28: __sincospi.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 29: __sincospi.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 30: __sincospi.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 31: __sincospi.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 32: __sincospi.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 33: __sincospi.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 34: __sincospi.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 35: __sincospi.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 36: __sincospi.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 37: __sincospi.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 38: __sincosf.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 39: __sincosf.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 40: __sincosf.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 41: __sincosf.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 42: __sincosf.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 43: __sincosf.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 44: __sincosf.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 45: __sincosf.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 46: __sincosf.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 47: __sincosf.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 48: __sincosf.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 49: __sincosf.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 50: __sincospif.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 51: __sincospif.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 52: __sincospif.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 53: __sincospif.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 54: __sincospif.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 55: __sincospif.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 56: __sincospif.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 57: __sincospif.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 58: __sincospif.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 59: __sincospif.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 60: __sincospif.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 61: __sincospif.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 62: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 63: __sincos.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 64: __sincos.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 65: __sincos.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 66: __sincos.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 67: __sincos.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 68: __sincos.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 69: __sincos.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 70: __sincos.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 71: __sincos.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 72: __sincos.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 73: __sincos.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 74: __sincos.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 75: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 76: ptr::non_null::NonNull::::new.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - -Check 77: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 78: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 79: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 80: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.1 - - Status: SUCCESS - - Description: "free argument must be NULL or valid pointer" - - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr - -Check 81: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.2 - - Status: SUCCESS - - Description: "free argument must be dynamic object" - - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr - -Check 82: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.3 - - Status: SUCCESS - - Description: "free argument has offset zero" - - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr - -Check 83: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.4 - - Status: SUCCESS - - Description: "double free" - - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr - -Check 84: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.5 - - Status: SUCCESS - - Description: "free called for new[] object" - - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr - -Check 85: ptr::non_null::verify::non_null_check_as_ptr.precondition_instance.6 - - Status: SUCCESS - - Description: "free called for stack-allocated object" - - Location: library/core/src/ptr/non_null.rs:1852:5 in function ptr::non_null::verify::non_null_check_as_ptr - -Check 86: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 87: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 88: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 89: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 90: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 91: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 92: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 93: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 94: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 95: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 96: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 97: ptr::non_null::NonNull::::as_ptr::{closure#2}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:337:15 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 98: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 99: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 100: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 101: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 102: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 103: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 104: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 105: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 106: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 107: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 108: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 109: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:339:9 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#1} - -Check 110: option::Option::>::unwrap.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/option.rs:963:15 in function option::Option::>::unwrap - -Check 111: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 112: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 113: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 114: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 115: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 116: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:337:33 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 117: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 118: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 119: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 120: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 121: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 122: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 123: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 124: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 125: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 126: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 127: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - -Check 128: ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:337:44 in function ptr::non_null::NonNull::::as_ptr::{closure#2}::{closure#0} - - -SUMMARY: - ** 0 of 128 failed - -VERIFICATION:- SUCCESSFUL -Verification Time: 0.9216408s - -Checking harness ptr::non_null::verify::non_null_check_new... -CBMC 6.3.1 (cbmc-6.3.1) -CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos -Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify18non_null_check_new.out -Generating GOTO Program -Adding CPROVER library (x86_64) -Removal of function pointers and virtual functions -Generic Property Instrumentation -Running with 16 object bits, 48 offset bits (user-specified) -Starting Bounded Model Checking -aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 606 column 5 function option::Option::>::is_some thread 0 -aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 606 column 5 function option::Option::>::is_some thread 0 -aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 926 column 15 function option::Option::>::expect thread 0 -aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 2025 column 5 function option::expect_failed thread 0 -aborting path on assume(false) at file /Users/dhvanikapadia/verify-rust-std/library/core/src/option.rs line 928 column 21 function option::Option::>::expect thread 0 -Runtime Symex: 0.266486s -size of program expression: 2586 steps -slicing removed 1586 assignments -Generated 115 VCC(s), 28 remaining after simplification -Runtime Postprocess Equation: 0.00204007s -Passing problem to propositional reduction -converting SSA -Runtime Convert SSA: 3.14592s -Running propositional reduction -Post-processing -Runtime Post-process: 0.000284261s -Solving with CaDiCaL 2.0.0 -70514 variables, 4265292 clauses -SAT checker: instance is SATISFIABLE -Runtime Solver: 0.00464163s -Runtime decision procedure: 3.15262s -Running propositional reduction -Solving with CaDiCaL 2.0.0 -70515 variables, 4265293 clauses -SAT checker: instance is UNSATISFIABLE -Runtime Solver: 0.000274707s -Runtime decision procedure: 0.000526648s - -RESULTS: -Check 1: free.frees.1 - - Status: SUCCESS - - Description: "Check that ptr is freeable" - - Location: :43 in function free - -Check 2: __CPROVER_contracts_write_set_record_deallocated.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated - -Check 3: ptr::non_null::NonNull::::new::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#0} - -Check 4: __CPROVER_contracts_write_set_check_assignment.assertion.1 - - Status: SUCCESS - - Description: "ptr NULL or writable up to size" - - Location: :775 in function __CPROVER_contracts_write_set_check_assignment - -Check 5: __CPROVER_contracts_write_set_check_assignment.assertion.2 - - Status: SUCCESS - - Description: "CAR size is less than __CPROVER_max_malloc_size" - - Location: :792 in function __CPROVER_contracts_write_set_check_assignment - -Check 6: __CPROVER_contracts_write_set_check_assignment.assertion.3 - - Status: SUCCESS - - Description: "no offset bits overflow on CAR upper bound computation" - - Location: :798 in function __CPROVER_contracts_write_set_check_assignment - -Check 7: __CPROVER_contracts_write_set_check_assignment.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :807 in function __CPROVER_contracts_write_set_check_assignment - -Check 8: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 9: option::expect_failed.assertion.1 - - Status: SUCCESS - - Description: "This is a placeholder message; Kani doesn't support message formatted at runtime" - - Location: library/core/src/option.rs:2025:5 in function option::expect_failed - -Check 10: option::Option::>::is_some.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/option.rs:606:5 in function option::Option::>::is_some - -Check 11: ptr::non_null::NonNull::::new::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#1} - -Check 12: ptr::non_null::NonNull::::new::{closure#2}.assertion.1 - - Status: SUCCESS - - Description: "|result| result.is_some() == !ptr.is_null()" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 13: ptr::non_null::NonNull::::new::{closure#2}.assertion.2 - - Status: SUCCESS - - Description: "|result| result.is_none() || result.expect("ptr is null!").as_ptr() == ptr" - - Location: library/core/src/ptr/non_null.rs:231:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 14: >::new::{closure#2}::{closure#2}.single_top_level_call.1 - - Status: SUCCESS - - Description: "Only a single top-level call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE3news0_0s0_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE3news0_0s0_0Bd_" - - Location: library/core/src/ptr/non_null.rs:230:5 in function >::new::{closure#2}::{closure#2} - -Check 15: >::new::{closure#2}::{closure#2}.no_alloc_dealloc_in_requires.1 - - Status: SUCCESS - - Description: "Check that requires do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:230:5 in function >::new::{closure#2}::{closure#2} - -Check 16: >::new::{closure#2}::{closure#2}.no_alloc_dealloc_in_ensures.1 - - Status: SUCCESS - - Description: "Check that ensures do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:230:5 in function >::new::{closure#2}::{closure#2} - -Check 17: >::new::{closure#2}::{closure#2}.no_recursive_call.1 - - Status: SUCCESS - - Description: "No recursive call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE3news0_0s0_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE3news0_0s0_0Bd_" - - Location: library/core/src/ptr/non_null.rs:230:5 in function >::new::{closure#2}::{closure#2} - -Check 18: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 19: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 - - Status: SUCCESS - - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" - - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime - -Check 20: option::Option::>::expect.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/option.rs:926:15 in function option::Option::>::expect - -Check 21: fmt::Arguments::<'_>::new_const::<1>.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 22: ptr::non_null::NonNull::::new.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - -Check 23: ptr::non_null::NonNull::::new_unchecked::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 24: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} - -Check 25: panic::location::Location::<'_>::caller.unsupported_construct.1 - - Status: SUCCESS - - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" - - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller - -Check 26: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} - -Check 27: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} - -Check 28: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} - -Check 29: __sincospif.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 30: __sincospif.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 31: __sincospif.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 32: __sincospif.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 33: __sincospif.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 34: __sincospif.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 35: __sincospif.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 36: __sincospif.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 37: __sincospif.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 38: __sincospif.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 39: __sincospif.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 40: __sincospif.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 41: __sincospi.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 42: __sincospi.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 43: __sincospi.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 44: __sincospi.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 45: __sincospi.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 46: __sincospi.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 47: __sincospi.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 48: __sincospi.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 49: __sincospi.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 50: __sincospi.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 51: __sincospi.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 52: __sincospi.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 53: __sincos.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 54: __sincos.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 55: __sincos.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 56: __sincos.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 57: __sincos.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 58: __sincos.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 59: __sincos.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 60: __sincos.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 61: __sincos.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 62: __sincos.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 63: __sincos.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 64: __sincos.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 65: __sincosf.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 66: __sincosf.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 67: __sincosf.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 68: __sincosf.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 69: __sincosf.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 70: __sincosf.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 71: __sincosf.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 72: __sincosf.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 73: __sincosf.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 74: __sincosf.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 75: __sincosf.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 76: __sincosf.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 77: ptr::non_null::verify::non_null_check_new.precondition_instance.1 - - Status: SUCCESS - - Description: "free argument must be NULL or valid pointer" - - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new - -Check 78: ptr::non_null::verify::non_null_check_new.precondition_instance.2 - - Status: SUCCESS - - Description: "free argument must be dynamic object" - - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new - -Check 79: ptr::non_null::verify::non_null_check_new.precondition_instance.3 - - Status: SUCCESS - - Description: "free argument has offset zero" - - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new - -Check 80: ptr::non_null::verify::non_null_check_new.precondition_instance.4 - - Status: SUCCESS - - Description: "double free" - - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new - -Check 81: ptr::non_null::verify::non_null_check_new.precondition_instance.5 - - Status: SUCCESS - - Description: "free called for new[] object" - - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new - -Check 82: ptr::non_null::verify::non_null_check_new.precondition_instance.6 - - Status: SUCCESS - - Description: "free called for stack-allocated object" - - Location: library/core/src/ptr/non_null.rs:1840:5 in function ptr::non_null::verify::non_null_check_new - -Check 83: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 84: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 85: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 86: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 87: ptr::non_null::NonNull::::new.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new - -Check 88: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 89: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 90: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 91: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 92: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 93: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 94: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 95: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 96: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 97: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 98: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 99: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:233:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 100: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:237:13 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 101: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 102: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 103: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 104: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 105: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 106: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.19 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 107: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.20 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 108: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.21 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 109: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.22 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 110: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.23 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 111: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.24 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 112: ptr::non_null::NonNull::::new::{closure#2}::{closure#2}.pointer_dereference.25 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:235:47 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#2} - -Check 113: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 114: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 115: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 116: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 117: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 118: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:230:5 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 119: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 120: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 121: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 122: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 123: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 124: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:230:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 125: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 126: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 127: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 128: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 129: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 130: ptr::non_null::NonNull::::new::{closure#2}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:231:15 in function ptr::non_null::NonNull::::new::{closure#2} - -Check 131: option::Option::>::is_some.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some - -Check 132: option::Option::>::is_some.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some - -Check 133: option::Option::>::is_some.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some - -Check 134: option::Option::>::is_some.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some - -Check 135: option::Option::>::is_some.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some - -Check 136: option::Option::>::is_some.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/option.rs:607:18 in function option::Option::>::is_some - -Check 137: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 138: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 139: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 140: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 141: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 142: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 143: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 144: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 145: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 146: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 147: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 148: ptr::non_null::NonNull::::new::{closure#2}::{closure#0}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:230:45 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#0} - -Check 149: option::Option::>::expect.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/option.rs:926:15 in function option::Option::>::expect - -Check 150: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 151: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 152: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 153: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 154: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 155: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:231:44 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 156: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 157: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 158: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 159: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 160: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 161: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 162: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 163: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 164: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 165: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 166: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 167: ptr::non_null::NonNull::::new::{closure#2}::{closure#1}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:231:86 in function ptr::non_null::NonNull::::new::{closure#2}::{closure#1} - -Check 168: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - - -SUMMARY: - ** 0 of 168 failed - -VERIFICATION:- SUCCESSFUL -Verification Time: 10.438369s - -Checking harness ptr::non_null::verify::non_null_check_new_unchecked... -CBMC 6.3.1 (cbmc-6.3.1) -CBMC version 6.3.1 (cbmc-6.3.1) 64-bit x86_64 macos -Reading GOTO program from file /Users/dhvanikapadia/verify-rust-std/target/kani_verify_std/target/x86_64-apple-darwin/debug/deps/core-9c237f184be58dda__RNvNtNtNtCsiLoNrkn62SX_4core3ptr8non_null6verify28non_null_check_new_unchecked.out -Generating GOTO Program -Adding CPROVER library (x86_64) -Removal of function pointers and virtual functions -Generic Property Instrumentation -Running with 16 object bits, 48 offset bits (user-specified) -Starting Bounded Model Checking -Runtime Symex: 0.118749s -size of program expression: 1249 steps -slicing removed 716 assignments -Generated 75 VCC(s), 10 remaining after simplification -Runtime Postprocess Equation: 0.000619235s -Passing problem to propositional reduction -converting SSA -Runtime Convert SSA: 0.00971251s -Running propositional reduction -Post-processing -Runtime Post-process: 3.8306e-05s -Solving with CaDiCaL 2.0.0 -2849 variables, 3582 clauses -SAT checker: instance is SATISFIABLE -Runtime Solver: 0.000443562s -Runtime decision procedure: 0.0104222s -Running propositional reduction -Solving with CaDiCaL 2.0.0 -2850 variables, 3583 clauses -SAT checker: instance is UNSATISFIABLE -Runtime Solver: 0.00017165s -Runtime decision procedure: 0.000272145s - -RESULTS: -Check 1: ptr::non_null::NonNull::::as_ptr::{closure#2}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#2} - -Check 2: free.frees.1 - - Status: SUCCESS - - Description: "Check that ptr is freeable" - - Location: :43 in function free - -Check 3: __CPROVER_contracts_write_set_record_deallocated.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :710 in function __CPROVER_contracts_write_set_record_deallocated - -Check 4: __CPROVER_contracts_write_set_check_assignment.assertion.1 - - Status: SUCCESS - - Description: "ptr NULL or writable up to size" - - Location: :775 in function __CPROVER_contracts_write_set_check_assignment - -Check 5: __CPROVER_contracts_write_set_check_assignment.assertion.2 - - Status: SUCCESS - - Description: "CAR size is less than __CPROVER_max_malloc_size" - - Location: :792 in function __CPROVER_contracts_write_set_check_assignment - -Check 6: __CPROVER_contracts_write_set_check_assignment.assertion.3 - - Status: SUCCESS - - Description: "no offset bits overflow on CAR upper bound computation" - - Location: :798 in function __CPROVER_contracts_write_set_check_assignment - -Check 7: __CPROVER_contracts_write_set_check_assignment.unwind.1 - - Status: SUCCESS - - Description: "unwinding assertion loop 0" - - Location: :807 in function __CPROVER_contracts_write_set_check_assignment - -Check 8: panic::location::Location::<'_>::caller.unsupported_construct.1 - - Status: SUCCESS - - Description: "caller_location is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/374" - - Location: library/core/src/panic/location.rs:89:9 in function panic::location::Location::<'_>::caller - -Check 9: ptr::non_null::NonNull::::as_ptr::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#0} - -Check 10: panicking::panic_nounwind_fmt::runtime.unsupported_construct.1 - - Status: SUCCESS - - Description: "call to foreign "Rust" function `rust_begin_unwind` is not currently supported by Kani. Please post your example at https://github.com/model-checking/kani/issues/new/choose" - - Location: library/core/src/panicking.rs:100:13 in function panicking::panic_nounwind_fmt::runtime - -Check 11: ptr::non_null::NonNull::::new_unchecked::{closure#2}.assertion.1 - - Status: SUCCESS - - Description: "|result| result.as_ptr() == ptr" - - Location: library/core/src/ptr/non_null.rs:200:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 12: >::new_unchecked::{closure#2}::{closure#1}.single_top_level_call.1 - - Status: SUCCESS - - Description: "Only a single top-level call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE13new_uncheckeds0_0s_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE13new_uncheckeds0_0s_0Bd_" - - Location: library/core/src/ptr/non_null.rs:199:5 in function >::new_unchecked::{closure#2}::{closure#1} - -Check 13: >::new_unchecked::{closure#2}::{closure#1}.no_alloc_dealloc_in_requires.1 - - Status: SUCCESS - - Description: "Check that requires do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:199:5 in function >::new_unchecked::{closure#2}::{closure#1} - -Check 14: >::new_unchecked::{closure#2}::{closure#1}.no_alloc_dealloc_in_ensures.1 - - Status: SUCCESS - - Description: "Check that ensures do not allocate or deallocate memory" - - Location: library/core/src/ptr/non_null.rs:199:5 in function >::new_unchecked::{closure#2}::{closure#1} - -Check 15: >::new_unchecked::{closure#2}::{closure#1}.no_recursive_call.1 - - Status: SUCCESS - - Description: "No recursive call to function _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE13new_uncheckeds0_0s_0Bd_ when checking contract _RNCNCNvMs1_NtNtCsiLoNrkn62SX_4core3ptr8non_nullINtB9_7NonNulllE13new_uncheckeds0_0s_0Bd_" - - Location: library/core/src/ptr/non_null.rs:199:5 in function >::new_unchecked::{closure#2}::{closure#1} - -Check 16: ptr::non_null::NonNull::::new_unchecked::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#1} - -Check 17: ptr::non_null::NonNull::::as_ptr::{closure#1}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:337:5 in function ptr::non_null::NonNull::::as_ptr::{closure#1} - -Check 18: fmt::Arguments::<'_>::new_const::<1>.assigns.1 - - Status: SUCCESS - - Description: "Check that *((unsigned char **)&temp_0) is assignable" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 19: ptr::non_null::NonNull::::new_unchecked::{closure#0}.unreachable.1 - - Status: SUCCESS - - Description: "unreachable code" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#0} - -Check 20: __sincos.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 21: __sincos.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 22: __sincos.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 23: __sincos.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 24: __sincos.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 25: __sincos.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 26: __sincos.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 27: __sincos.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 28: __sincos.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 29: __sincos.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 30: __sincos.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 31: __sincos.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:675 in function __sincos - -Check 32: __sincospif.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 33: __sincospif.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 34: __sincospif.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 35: __sincospif.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 36: __sincospif.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 37: __sincospif.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 38: __sincospif.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 39: __sincospif.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 40: __sincospif.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 41: __sincospif.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 42: __sincospif.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 43: __sincospif.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:680 in function __sincospif - -Check 44: __sincospi.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 45: __sincospi.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 46: __sincospi.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 47: __sincospi.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 48: __sincospi.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 49: __sincospi.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 50: __sincospi.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 51: __sincospi.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 52: __sincospi.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 53: __sincospi.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 54: __sincospi.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 55: __sincospi.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:685 in function __sincospi - -Check 56: __sincosf.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 57: __sincosf.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 58: __sincosf.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 59: __sincosf.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 60: __sincosf.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 61: __sincosf.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 62: __sincosf.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 63: __sincosf.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 64: __sincosf.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 65: __sincosf.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 66: __sincosf.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 67: __sincosf.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: ../../../Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/math.h:670 in function __sincosf - -Check 68: fmt::Arguments::<'_>::new_const::<1>.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/fmt/mod.rs:339:34 in function fmt::Arguments::<'_>::new_const::<1> - -Check 69: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.1 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 70: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.2 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 71: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.3 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 72: __CPROVER_contracts_obj_set_create_indexed_by_object_id.bit_count.4 - - Status: SUCCESS - - Description: "count leading zeros is undefined for value zero" - - Location: :251 in function __CPROVER_contracts_obj_set_create_indexed_by_object_id - -Check 73: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 74: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 75: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 76: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 77: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 78: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 79: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 80: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 81: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 82: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 83: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 84: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:199:17 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 85: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 86: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 87: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 88: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 89: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 90: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:199:5 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 91: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.19 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 92: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.20 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 93: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.21 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 94: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.22 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 95: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.23 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 96: ptr::non_null::NonNull::::new_unchecked::{closure#2}.pointer_dereference.24 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:200:15 in function ptr::non_null::NonNull::::new_unchecked::{closure#2} - -Check 97: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.1 - - Status: SUCCESS - - Description: "free argument must be NULL or valid pointer" - - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked - -Check 98: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.2 - - Status: SUCCESS - - Description: "free argument must be dynamic object" - - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked - -Check 99: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.3 - - Status: SUCCESS - - Description: "free argument has offset zero" - - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked - -Check 100: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.4 - - Status: SUCCESS - - Description: "double free" - - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked - -Check 101: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.5 - - Status: SUCCESS - - Description: "free called for new[] object" - - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked - -Check 102: ptr::non_null::verify::non_null_check_new_unchecked.precondition_instance.6 - - Status: SUCCESS - - Description: "free called for stack-allocated object" - - Location: library/core/src/ptr/non_null.rs:1831:5 in function ptr::non_null::verify::non_null_check_new_unchecked - -Check 103: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 104: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 105: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 106: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 107: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 108: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 109: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 110: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 111: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 112: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 113: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 114: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:207:33 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 115: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 116: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 117: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 118: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 119: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 120: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 121: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.19 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 122: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.20 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 123: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.21 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 124: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.22 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 125: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.23 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 126: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1}.pointer_dereference.24 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:209:32 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#1} - -Check 127: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.1 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 128: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.2 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 129: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.3 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 130: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.4 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 131: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.5 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 132: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.6 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:200:24 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 133: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.7 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 134: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.8 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 135: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.9 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 136: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.10 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 137: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.11 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 138: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.12 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 139: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.13 - - Status: SUCCESS - - Description: "dereference failure: pointer NULL" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 140: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.14 - - Status: SUCCESS - - Description: "dereference failure: pointer invalid" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 141: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.15 - - Status: SUCCESS - - Description: "dereference failure: deallocated dynamic object" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 142: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.16 - - Status: SUCCESS - - Description: "dereference failure: dead object" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 143: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.17 - - Status: SUCCESS - - Description: "dereference failure: pointer outside object bounds" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - -Check 144: ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0}.pointer_dereference.18 - - Status: SUCCESS - - Description: "dereference failure: invalid integer address" - - Location: library/core/src/ptr/non_null.rs:200:43 in function ptr::non_null::NonNull::::new_unchecked::{closure#2}::{closure#0} - - -SUMMARY: - ** 0 of 144 failed - -VERIFICATION:- SUCCESSFUL -Verification Time: 0.7228405s - -Complete - 6 successfully verified harnesses, 0 failures, 6 total. From 0a9fc55a7afd08848e2343cb6f978f2d73710794 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:37:54 -0700 Subject: [PATCH 04/29] Deleting Kani --- kani | 1 - 1 file changed, 1 deletion(-) delete mode 160000 kani diff --git a/kani b/kani deleted file mode 160000 index a8a28ee510151..0000000000000 --- a/kani +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a8a28ee5101510744218653337519f16a12e3e55 From 8669d9f28037b59ae8bd7128803ed65c1b6ef12b Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:49:42 -0700 Subject: [PATCH 05/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 46711c6bcaa07..8bfb08afb5b60 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -10,6 +10,7 @@ use crate::ub_checks::assert_unsafe_precondition; use crate::{fmt, hash, intrinsics, ptr}; use safety::{ensures, requires}; + #[cfg(kani)] use crate::kani; @@ -437,11 +438,7 @@ impl NonNull { #[ensures(|result: &NonNull| (self.as_ptr() as *const () as usize) % core::mem::align_of::() == 0)] pub const fn cast(self) -> NonNull { // SAFETY: `self` is a `NonNull` pointer which is necessarily non-null - unsafe { - NonNull { - pointer: self.as_ptr() as *mut U, - } - } + unsafe { NonNull { pointer: self.as_ptr() as *mut U } } } /// Adds an offset to a pointer. From a393bb146042c77453b2299e07e7ac0c50e7e4df Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:57:22 -0700 Subject: [PATCH 06/29] editing non_null.rs --- library/core/src/ptr/non_null.rs | 46 +++++++------------------------- 1 file changed, 9 insertions(+), 37 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 8bfb08afb5b60..23eaee60475d4 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -438,7 +438,7 @@ impl NonNull { #[ensures(|result: &NonNull| (self.as_ptr() as *const () as usize) % core::mem::align_of::() == 0)] pub const fn cast(self) -> NonNull { // SAFETY: `self` is a `NonNull` pointer which is necessarily non-null - unsafe { NonNull { pointer: self.as_ptr() as *mut U } } + unsafe { NonNull { pointer: self.as_ptr() as *mut U } } } /// Adds an offset to a pointer. @@ -490,11 +490,7 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { - NonNull { - pointer: intrinsics::offset(self.pointer, count), - } - } + unsafe { NonNull { pointer: intrinsics::offset(self.pointer, count) } } } /// Calculates the offset from a pointer in bytes. @@ -518,11 +514,7 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { - NonNull { - pointer: self.pointer.byte_offset(count), - } - } + unsafe { NonNull { pointer: self.pointer.byte_offset(count) } } } /// Adds an offset to a pointer (convenience for `.offset(count as isize)`). @@ -574,11 +566,7 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { - NonNull { - pointer: intrinsics::offset(self.pointer, count), - } - } + unsafe { NonNull { pointer: intrinsics::offset(self.pointer, count) } } } /// Calculates the offset from a pointer in bytes (convenience for `.byte_offset(count as isize)`). @@ -603,11 +591,7 @@ impl NonNull { // Additionally safety contract of `add` guarantees that the resulting pointer is pointing // to an allocation, there can't be an allocation at null, thus it's safe to construct // `NonNull`. - unsafe { - NonNull { - pointer: self.pointer.byte_add(count), - } - } + unsafe { NonNull { pointer: self.pointer.byte_add(count) } } } /// Subtracts an offset from a pointer (convenience for @@ -691,11 +675,7 @@ impl NonNull { // Additionally safety contract of `sub` guarantees that the resulting pointer is pointing // to an allocation, there can't be an allocation at null, thus it's safe to construct // `NonNull`. - unsafe { - NonNull { - pointer: self.pointer.byte_sub(count), - } - } + unsafe { NonNull { pointer: self.pointer.byte_sub(count) } } } /// Calculates the distance between two pointers. The returned value is in @@ -1810,16 +1790,12 @@ impl From<&T> for NonNull { #[inline] fn from(reference: &T) -> Self { // SAFETY: A reference cannot be null. - unsafe { - NonNull { - pointer: reference as *const T, - } - } + unsafe { NonNull { pointer: reference as *const T } } } } #[cfg(kani)] -#[unstable(feature = "kani", issue = "none")] +#[unstable(feature="kani", issue="none")] mod verify { use super::*; use crate::ptr::null_mut; @@ -1838,11 +1814,7 @@ mod verify { pub fn non_null_check_new() { let mut x: i32 = kani::any(); let xptr = &mut x; - let maybe_null_ptr = if kani::any() { - xptr as *mut i32 - } else { - null_mut() - }; + let maybe_null_ptr = if kani::any() { xptr as *mut i32 } else { null_mut() }; let _ = NonNull::new(maybe_null_ptr); } From 0116189a88eead47fe46379cba6fdf523b002ca9 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:58:37 -0700 Subject: [PATCH 07/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 23eaee60475d4..0b36fb22d3eca 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1774,12 +1774,7 @@ impl From<&mut T> for NonNull { #[inline] fn from(reference: &mut T) -> Self { // SAFETY: A mutable reference cannot be null. - unsafe { - NonNull { - pointer: reference as *mut T, - } - } - } + unsafe { NonNull { pointer: reference as *mut T } } } #[stable(feature = "nonnull", since = "1.25.0")] From a8447004e50f653766d9d04e33a415c58e135cd5 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:59:57 -0700 Subject: [PATCH 08/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 0b36fb22d3eca..12caaa3592680 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1774,8 +1774,9 @@ impl From<&mut T> for NonNull { #[inline] fn from(reference: &mut T) -> Self { // SAFETY: A mutable reference cannot be null. - unsafe { NonNull { pointer: reference as *mut T } } -} + unsafe { NonNull { pointer: reference as *mut T } + } +} #[stable(feature = "nonnull", since = "1.25.0")] impl From<&T> for NonNull { From dbf1e32e8497f2e95c952d480ad202500e1e0ab7 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 17:01:30 -0700 Subject: [PATCH 09/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 12caaa3592680..55700a8d24fd2 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1786,8 +1786,8 @@ impl From<&T> for NonNull { #[inline] fn from(reference: &T) -> Self { // SAFETY: A reference cannot be null. - unsafe { NonNull { pointer: reference as *const T } } - } + unsafe { NonNull { pointer: reference as *const T } + } } #[cfg(kani)] From 20652aacfa42ada7d1089c4197133ad324d0dd3b Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 17:04:07 -0700 Subject: [PATCH 10/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 55700a8d24fd2..08e33ac4a73d3 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1774,8 +1774,8 @@ impl From<&mut T> for NonNull { #[inline] fn from(reference: &mut T) -> Self { // SAFETY: A mutable reference cannot be null. - unsafe { NonNull { pointer: reference as *mut T } - } + unsafe { NonNull { pointer: reference as *mut T } } + } } #[stable(feature = "nonnull", since = "1.25.0")] @@ -1786,8 +1786,8 @@ impl From<&T> for NonNull { #[inline] fn from(reference: &T) -> Self { // SAFETY: A reference cannot be null. - unsafe { NonNull { pointer: reference as *const T } - } + unsafe { NonNull { pointer: reference as *const T } } + } } #[cfg(kani)] From 17d509e62c35a0a85e5b163c1a073bd151b754c4 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 17:07:37 -0700 Subject: [PATCH 11/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 08e33ac4a73d3..508b8ac88d035 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1774,9 +1774,9 @@ impl From<&mut T> for NonNull { #[inline] fn from(reference: &mut T) -> Self { // SAFETY: A mutable reference cannot be null. - unsafe { NonNull { pointer: reference as *mut T } } + unsafe { NonNull { pointer: reference as *mut T } } } -} +} #[stable(feature = "nonnull", since = "1.25.0")] impl From<&T> for NonNull { @@ -1786,7 +1786,7 @@ impl From<&T> for NonNull { #[inline] fn from(reference: &T) -> Self { // SAFETY: A reference cannot be null. - unsafe { NonNull { pointer: reference as *const T } } + unsafe { NonNull { pointer: reference as *const T } } } } From 9b1cca6922be2a80e5898cf84c1d87594cd646cf Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:16:40 -0700 Subject: [PATCH 12/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 508b8ac88d035..85099b523c36b 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1774,9 +1774,9 @@ impl From<&mut T> for NonNull { #[inline] fn from(reference: &mut T) -> Self { // SAFETY: A mutable reference cannot be null. - unsafe { NonNull { pointer: reference as *mut T } } + unsafe { NonNull { pointer: reference as *mut T } } } -} +} #[stable(feature = "nonnull", since = "1.25.0")] impl From<&T> for NonNull { @@ -1786,7 +1786,7 @@ impl From<&T> for NonNull { #[inline] fn from(reference: &T) -> Self { // SAFETY: A reference cannot be null. - unsafe { NonNull { pointer: reference as *const T } } + unsafe { NonNull { pointer: reference as *const T } } } } From 9bd3888a18455ff67fdd2b31b365884d58fe1361 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:18:36 -0700 Subject: [PATCH 13/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 85099b523c36b..e9497a6d71751 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1776,7 +1776,7 @@ impl From<&mut T> for NonNull { // SAFETY: A mutable reference cannot be null. unsafe { NonNull { pointer: reference as *mut T } } } -} +} #[stable(feature = "nonnull", since = "1.25.0")] impl From<&T> for NonNull { From e9d741c2dd04641f4f812bb16edea0eb9da348b4 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Wed, 13 Nov 2024 12:10:41 -0800 Subject: [PATCH 14/29] worked on feedback --- library/core/src/ptr/non_null.rs | 49 ++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 22 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index e9497a6d71751..ac375b028cf9d 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1817,37 +1817,42 @@ mod verify { #[kani::proof_for_contract(NonNull::as_ptr)] pub fn non_null_check_as_ptr() { // Create a non-null pointer to a random value - let mut x: i32 = kani::any(); - let ptr = NonNull::new(&mut x as *mut i32).unwrap(); + let non_null_ptr: *mut i32 = kani::any::() as *mut i32; + if let Some(ptr) = NonNull::new(non_null_ptr){ // Call as_ptr - let raw_ptr = ptr.as_ptr(); + let raw_ptr = ptr.as_ptr();} + } #[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] pub fn non_null_check_as_mut_ptr() { // Create a non-null slice pointer - let mut value: i32 = kani::any(); - let ptr = NonNull::new(&mut value as *mut i32).unwrap(); - let slice_ptr = NonNull::slice_from_raw_parts(ptr, 1); - // Call as_mut_ptr - let raw_ptr = slice_ptr.as_mut_ptr(); - } - + const ARR_LEN: usize = 100; + let mut generator = kani::PointerGenerator::::new(); + let mut values: [i32; ARR_LEN] = [0; ARR_LEN]; + let raw_ptr: *mut i32 = generator.any_in_bounds().ptr; + if let Some(ptr) = NonNull::new(raw_ptr){ + let slice_ptr = NonNull::slice_from_raw_parts(ptr, values.len()); + // Call as_mut_ptr + let raw_ptr = slice_ptr.as_mut_ptr(); + }} #[kani::proof_for_contract(NonNull::::cast)] pub fn non_null_check_cast() { // Create a non-null pointer to a random value - let mut x: i32 = kani::any(); - let ptr = NonNull::new(&mut x as *mut i32).unwrap(); + let non_null_ptr: *mut i32 = kani::any::() as *mut i32; + if let Some(ptr) = NonNull::new(non_null_ptr){ // Perform the cast - let casted_ptr: NonNull = ptr.cast(); - } + let casted_ptr: NonNull = ptr.cast(); + }} #[kani::proof_for_contract(NonNull::<[T]>::as_non_null_ptr)] pub fn non_null_check_as_non_null_ptr() { - // Create a non-null pointer to a random value - let mut value: i32 = kani::any(); - let ptr = NonNull::new(&mut value as *mut i32).unwrap(); - // Create a slice pointer - let slice_ptr = NonNull::slice_from_raw_parts(ptr, 1); - // Call as_non_null_ptr - let result = slice_ptr.as_non_null_ptr(); - } + const ARR_LEN: usize = 100; + let mut generator = kani::PointerGenerator::::new(); + let mut values: [i32; ARR_LEN] = [0; ARR_LEN]; + let raw_ptr: *mut i32 = generator.any_in_bounds().ptr; + if let Some(ptr) = NonNull::new(raw_ptr){ + let slice_ptr = NonNull::slice_from_raw_parts(ptr, values.len()); + let result = slice_ptr.as_non_null_ptr(); + }} + } + From 065eb9fbebf3426cab87a506be7f7161e31a934d Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Fri, 15 Nov 2024 18:29:23 -0800 Subject: [PATCH 15/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index ac375b028cf9d..3063bbbbcf64c 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -433,9 +433,7 @@ impl NonNull { without modifying the original"] #[inline] // Address preservation - #[ensures(|result: &NonNull| result.as_ptr() as *const () as usize == self.as_ptr() as *const () as usize )] - // Ensures pointer is properly aligned for new type 'U' - #[ensures(|result: &NonNull| (self.as_ptr() as *const () as usize) % core::mem::align_of::() == 0)] + #[ensures(|result: &NonNull| result.as_ptr().addr() == self.as_ptr().addr())] pub const fn cast(self) -> NonNull { // SAFETY: `self` is a `NonNull` pointer which is necessarily non-null unsafe { NonNull { pointer: self.as_ptr() as *mut U } } @@ -1515,7 +1513,7 @@ impl NonNull<[T]> { #[unstable(feature = "slice_ptr_get", issue = "74265")] #[rustc_const_unstable(feature = "slice_ptr_get", issue = "74265")] // Address preservation - #[ensures(|result: &NonNull| result.as_ptr() as *const () as usize == self.pointer as *const () as usize)] + #[ensures(|result: &NonNull| result.as_ptr().addr() == self.as_ptr().addr())] pub const fn as_non_null_ptr(self) -> NonNull { self.cast() } From 5f0538ce99c112a96dda70fc92e56c9a362287cf Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Fri, 15 Nov 2024 18:32:19 -0800 Subject: [PATCH 16/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 3063bbbbcf64c..0d773ddeae74a 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1818,7 +1818,7 @@ mod verify { let non_null_ptr: *mut i32 = kani::any::() as *mut i32; if let Some(ptr) = NonNull::new(non_null_ptr){ // Call as_ptr - let raw_ptr = ptr.as_ptr();} + let raw_ptr = ptr.as_ptr();} } #[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] @@ -1829,9 +1829,9 @@ mod verify { let mut values: [i32; ARR_LEN] = [0; ARR_LEN]; let raw_ptr: *mut i32 = generator.any_in_bounds().ptr; if let Some(ptr) = NonNull::new(raw_ptr){ - let slice_ptr = NonNull::slice_from_raw_parts(ptr, values.len()); - // Call as_mut_ptr - let raw_ptr = slice_ptr.as_mut_ptr(); + let slice_ptr = NonNull::slice_from_raw_parts(ptr, values.len()); + // Call as_mut_ptr + let raw_ptr = slice_ptr.as_mut_ptr(); }} #[kani::proof_for_contract(NonNull::::cast)] pub fn non_null_check_cast() { @@ -1839,7 +1839,7 @@ mod verify { let non_null_ptr: *mut i32 = kani::any::() as *mut i32; if let Some(ptr) = NonNull::new(non_null_ptr){ // Perform the cast - let casted_ptr: NonNull = ptr.cast(); + let casted_ptr: NonNull = ptr.cast(); }} #[kani::proof_for_contract(NonNull::<[T]>::as_non_null_ptr)] pub fn non_null_check_as_non_null_ptr() { @@ -1848,8 +1848,8 @@ mod verify { let mut values: [i32; ARR_LEN] = [0; ARR_LEN]; let raw_ptr: *mut i32 = generator.any_in_bounds().ptr; if let Some(ptr) = NonNull::new(raw_ptr){ - let slice_ptr = NonNull::slice_from_raw_parts(ptr, values.len()); - let result = slice_ptr.as_non_null_ptr(); + let slice_ptr = NonNull::slice_from_raw_parts(ptr, values.len()); + let result = slice_ptr.as_non_null_ptr(); }} } From f898e601f61e6d5cba20bded16d60c2bf1cf9edf Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Fri, 15 Nov 2024 19:19:25 -0800 Subject: [PATCH 17/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 0d773ddeae74a..51d7567764e83 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1823,14 +1823,13 @@ mod verify { } #[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] pub fn non_null_check_as_mut_ptr() { - // Create a non-null slice pointer const ARR_LEN: usize = 100; let mut generator = kani::PointerGenerator::::new(); - let mut values: [i32; ARR_LEN] = [0; ARR_LEN]; - let raw_ptr: *mut i32 = generator.any_in_bounds().ptr; - if let Some(ptr) = NonNull::new(raw_ptr){ - let slice_ptr = NonNull::slice_from_raw_parts(ptr, values.len()); - // Call as_mut_ptr + let alloc_status = generator.any_alloc_status(); + let raw_ptr: *mut i32 = alloc_status.ptr as *mut i32; + let values: [i32; ARR_LEN] = kani::any(); + if let Some(non_null_ptr) = NonNull::new(raw_ptr) { + let slice_ptr = NonNull::slice_from_raw_parts(non_null_ptr, values.len()); let raw_ptr = slice_ptr.as_mut_ptr(); }} #[kani::proof_for_contract(NonNull::::cast)] @@ -1845,8 +1844,9 @@ mod verify { pub fn non_null_check_as_non_null_ptr() { const ARR_LEN: usize = 100; let mut generator = kani::PointerGenerator::::new(); + let alloc_status = generator.any_alloc_status(); + let raw_ptr: *mut i32 = alloc_status.ptr as *mut i32; let mut values: [i32; ARR_LEN] = [0; ARR_LEN]; - let raw_ptr: *mut i32 = generator.any_in_bounds().ptr; if let Some(ptr) = NonNull::new(raw_ptr){ let slice_ptr = NonNull::slice_from_raw_parts(ptr, values.len()); let result = slice_ptr.as_non_null_ptr(); From 9c3ae58b32de88108999c91cf97f9e0c3ba30e0e Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Fri, 22 Nov 2024 10:46:49 -0800 Subject: [PATCH 18/29] Delete verify-error1.log --- verify-error1.log | 49132 -------------------------------------------- 1 file changed, 49132 deletions(-) delete mode 100644 verify-error1.log diff --git a/verify-error1.log b/verify-error1.log deleted file mode 100644 index 35c6c7d593b81..0000000000000 --- a/verify-error1.log +++ /dev/null @@ -1,49132 +0,0 @@ -Kani Rust Verifier 0.56.0 (standalone) -error: cannot find a built-in macro with name `SmartPointer` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1068:1 - | -1068 | / pub macro SmartPointer($item:item) { -1069 | | /* compiler built-in */ -1070 | | } - | |_^ - -error: attributes starting with `rustc` are reserved for use by the `rustc` compiler - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1095:12 - | -1095 | impl<#[rustc_runtime] const RUNTIME: bool> Compat for Maybe {} - | ^^^^^^^^^^^^^ - -error: attributes starting with `rustc` are reserved for use by the `rustc` compiler - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1091:24 - | -1091 | pub trait Compat<#[rustc_runtime] const RUNTIME: bool> {} - | ^^^^^^^^^^^^^ - -error[E0773]: attempted to define built-in macro more than once - --> /Users/dhvanikapadia/.rustup/toolchains/nightly-2024-11-03-x86_64-apple-darwin/lib/rustlib/src/rust/library/core/src/macros/mod.rs:1470:5 - | -1470 | macro_rules! cfg { - | ^^^^^^^^^^^^^^^^ - | -note: previously defined here - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/macros/mod.rs:1468:5 - | -1468 | / macro_rules! cfg { -1469 | | ($($cfg:tt)*) => { -1470 | | /* compiler built-in */ -1471 | | }; -1472 | | } - | |_____^ - -error: cannot find attribute `rustc_runtime` in this scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1095:12 - | -1095 | impl<#[rustc_runtime] const RUNTIME: bool> Compat for Maybe {} - | ^^^^^^^^^^^^^ help: a built-in attribute with a similar name exists: `panic_runtime` - -error: cannot find attribute `rustc_runtime` in this scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1091:24 - | -1091 | pub trait Compat<#[rustc_runtime] const RUNTIME: bool> {} - | ^^^^^^^^^^^^^ help: a built-in attribute with a similar name exists: `panic_runtime` - -error[E0522]: definition of an unknown lang item: `EffectsNoRuntime` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1083:5 - | -1083 | #[lang = "EffectsNoRuntime"] - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ definition of unknown lang item `EffectsNoRuntime` - -error[E0522]: definition of an unknown lang item: `EffectsMaybe` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1085:5 - | -1085 | #[lang = "EffectsMaybe"] - | ^^^^^^^^^^^^^^^^^^^^^^^^ definition of unknown lang item `EffectsMaybe` - -error[E0522]: definition of an unknown lang item: `EffectsRuntime` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1087:5 - | -1087 | #[lang = "EffectsRuntime"] - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ definition of unknown lang item `EffectsRuntime` - -error[E0522]: definition of an unknown lang item: `EffectsCompat` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1090:5 - | -1090 | #[lang = "EffectsCompat"] - | ^^^^^^^^^^^^^^^^^^^^^^^^^ definition of unknown lang item `EffectsCompat` - -error[E0522]: definition of an unknown lang item: `EffectsTyCompat` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1097:5 - | -1097 | #[lang = "EffectsTyCompat"] - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ definition of unknown lang item `EffectsTyCompat` - -error[E0522]: definition of an unknown lang item: `EffectsIntersection` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1104:5 - | -1104 | #[lang = "EffectsIntersection"] - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ definition of unknown lang item `EffectsIntersection` - -error[E0522]: definition of an unknown lang item: `EffectsIntersectionOutput` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:1106:9 - | -1106 | #[lang = "EffectsIntersectionOutput"] - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ definition of unknown lang item `EffectsIntersectionOutput` - -error[E0522]: definition of an unknown lang item: `receiver` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/deref.rs:300:1 - | -300 | #[lang = "receiver"] - | ^^^^^^^^^^^^^^^^^^^^ definition of unknown lang item `receiver` - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:3019:9 - | -3018 | #[rustc_const_stable(feature = "const_int_pow", since = "1.50.0")] - | ------------------------------------------------------------------ attribute specified here -3019 | const fn one_less_than_next_power_of_two(self) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:476:5 - | -476 | / uint_impl! { -477 | | Self = u8, -478 | | ActualT = u8, -479 | | SignedT = i8, -... | -493 | | bound_condition = "", -494 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:3019:9 - | -3018 | #[rustc_const_stable(feature = "const_int_pow", since = "1.50.0")] - | ------------------------------------------------------------------ attribute specified here -3019 | const fn one_less_than_next_power_of_two(self) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:3019:9 - | -3018 | #[rustc_const_stable(feature = "const_int_pow", since = "1.50.0")] - | ------------------------------------------------------------------ attribute specified here -3019 | const fn one_less_than_next_power_of_two(self) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:3019:9 - | -3018 | #[rustc_const_stable(feature = "const_int_pow", since = "1.50.0")] - | ------------------------------------------------------------------ attribute specified here -3019 | const fn one_less_than_next_power_of_two(self) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:3019:9 - | -3018 | #[rustc_const_stable(feature = "const_int_pow", since = "1.50.0")] - | ------------------------------------------------------------------ attribute specified here -3019 | const fn one_less_than_next_power_of_two(self) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1188:5 - | -1188 | / uint_impl! { -1189 | | Self = u128, -1190 | | ActualT = u128, -1191 | | SignedT = i128, -... | -1207 | | bound_condition = "", -1208 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:3019:9 - | -3018 | #[rustc_const_stable(feature = "const_int_pow", since = "1.50.0")] - | ------------------------------------------------------------------ attribute specified here -3019 | const fn one_less_than_next_power_of_two(self) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1393:1 - | -1392 | #[rustc_const_stable(feature = "const_int_from_str", since = "1.82.0")] - | ----------------------------------------------------------------------- attribute specified here -1393 | pub const fn can_not_overflow(radix: u32, is_signed_ty: bool, digits: &[u8]) -> bool { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:951:5 - | -949 | #[rustc_const_stable(feature = "const_unreachable_unchecked", since = "1.57.0")] - | -------------------------------------------------------------------------------- attribute specified here -950 | #[rustc_nounwind] -951 | pub fn unreachable() -> !; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:968:1 - | -964 | #[rustc_const_stable(feature = "const_assume", since = "1.77.0")] - | ----------------------------------------------------------------- attribute specified here -... -968 | pub const unsafe fn assume(b: bool) { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:1050:5 - | -1047 | #[rustc_const_stable(feature = "const_assert_type", since = "1.59.0")] - | ---------------------------------------------------------------------- attribute specified here -... -1050 | pub fn assert_inhabited(); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:1059:5 - | -1056 | #[rustc_const_stable(feature = "const_assert_type2", since = "1.75.0")] - | ----------------------------------------------------------------------- attribute specified here -... -1059 | pub fn assert_zero_valid(); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:1067:5 - | -1064 | #[rustc_const_stable(feature = "const_assert_type2", since = "1.75.0")] - | ----------------------------------------------------------------------- attribute specified here -... -1067 | pub fn assert_mem_uninitialized_valid(); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:1080:5 - | -1077 | #[rustc_const_stable(feature = "const_caller_location", since = "1.79.0")] - | -------------------------------------------------------------------------- attribute specified here -... -1080 | pub fn caller_location() -> &'static crate::panic::Location<'static>; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:1399:5 - | -1397 | #[rustc_const_stable(feature = "const_transmute", since = "1.56.0")] - | -------------------------------------------------------------------- attribute specified here -1398 | #[rustc_nounwind] -1399 | pub fn transmute_unchecked(src: Src) -> Dst; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:1417:5 - | -1414 | #[rustc_const_stable(feature = "const_needs_drop", since = "1.40.0")] - | --------------------------------------------------------------------- attribute specified here -... -1417 | pub fn needs_drop() -> bool; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:1439:5 - | -1437 | #[rustc_const_stable(feature = "const_ptr_offset", since = "1.61.0")] - | --------------------------------------------------------------------- attribute specified here -1438 | #[rustc_nounwind] -1439 | pub fn offset(dst: Ptr, offset: Delta) -> Ptr; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:1457:5 - | -1455 | #[rustc_const_stable(feature = "const_ptr_offset", since = "1.61.0")] - | --------------------------------------------------------------------- attribute specified here -1456 | #[rustc_nounwind] -1457 | pub fn arith_offset(dst: *const T, offset: isize) -> *const T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2240:5 - | -2237 | #[rustc_const_stable(feature = "const_ctpop", since = "1.40.0")] - | ---------------------------------------------------------------- attribute specified here -... -2240 | pub fn ctpop(x: T) -> u32; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2281:5 - | -2278 | #[rustc_const_stable(feature = "const_ctlz", since = "1.40.0")] - | --------------------------------------------------------------- attribute specified here -... -2281 | pub fn ctlz(x: T) -> u32; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2302:5 - | -2300 | #[rustc_const_stable(feature = "constctlz", since = "1.50.0")] - | -------------------------------------------------------------- attribute specified here -2301 | #[rustc_nounwind] -2302 | pub fn ctlz_nonzero(x: T) -> u32; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2343:5 - | -2340 | #[rustc_const_stable(feature = "const_cttz", since = "1.40.0")] - | --------------------------------------------------------------- attribute specified here -... -2343 | pub fn cttz(x: T) -> u32; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2364:5 - | -2362 | #[rustc_const_stable(feature = "const_cttz_nonzero", since = "1.53.0")] - | ----------------------------------------------------------------------- attribute specified here -2363 | #[rustc_nounwind] -2364 | pub fn cttz_nonzero(x: T) -> u32; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2379:5 - | -2376 | #[rustc_const_stable(feature = "const_bswap", since = "1.40.0")] - | ---------------------------------------------------------------- attribute specified here -... -2379 | pub fn bswap(x: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2394:5 - | -2391 | #[rustc_const_stable(feature = "const_bitreverse", since = "1.40.0")] - | --------------------------------------------------------------------- attribute specified here -... -2394 | pub fn bitreverse(x: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2420:5 - | -2417 | #[rustc_const_stable(feature = "const_int_overflow", since = "1.40.0")] - | ----------------------------------------------------------------------- attribute specified here -... -2420 | pub fn add_with_overflow(x: T, y: T) -> (T, bool); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2435:5 - | -2432 | #[rustc_const_stable(feature = "const_int_overflow", since = "1.40.0")] - | ----------------------------------------------------------------------- attribute specified here -... -2435 | pub fn sub_with_overflow(x: T, y: T) -> (T, bool); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2450:5 - | -2447 | #[rustc_const_stable(feature = "const_int_overflow", since = "1.40.0")] - | ----------------------------------------------------------------------- attribute specified here -... -2450 | pub fn mul_with_overflow(x: T, y: T) -> (T, bool); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2468:5 - | -2466 | #[rustc_const_stable(feature = "const_int_unchecked_div", since = "1.52.0")] - | ---------------------------------------------------------------------------- attribute specified here -2467 | #[rustc_nounwind] -2468 | pub fn unchecked_div(x: T, y: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2477:5 - | -2475 | #[rustc_const_stable(feature = "const_int_unchecked_rem", since = "1.52.0")] - | ---------------------------------------------------------------------------- attribute specified here -2476 | #[rustc_nounwind] -2477 | pub fn unchecked_rem(x: T, y: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2487:5 - | -2485 | #[rustc_const_stable(feature = "const_int_unchecked", since = "1.40.0")] - | ------------------------------------------------------------------------ attribute specified here -2486 | #[rustc_nounwind] -2487 | pub fn unchecked_shl(x: T, y: U) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2496:5 - | -2494 | #[rustc_const_stable(feature = "const_int_unchecked", since = "1.40.0")] - | ------------------------------------------------------------------------ attribute specified here -2495 | #[rustc_nounwind] -2496 | pub fn unchecked_shr(x: T, y: U) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2505:5 - | -2503 | #[rustc_const_stable(feature = "unchecked_math", since = "1.79.0")] - | ------------------------------------------------------------------- attribute specified here -2504 | #[rustc_nounwind] -2505 | pub fn unchecked_add(x: T, y: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2514:5 - | -2512 | #[rustc_const_stable(feature = "unchecked_math", since = "1.79.0")] - | ------------------------------------------------------------------- attribute specified here -2513 | #[rustc_nounwind] -2514 | pub fn unchecked_sub(x: T, y: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2523:5 - | -2521 | #[rustc_const_stable(feature = "unchecked_math", since = "1.79.0")] - | ------------------------------------------------------------------- attribute specified here -2522 | #[rustc_nounwind] -2523 | pub fn unchecked_mul(x: T, y: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2538:5 - | -2535 | #[rustc_const_stable(feature = "const_int_rotate", since = "1.40.0")] - | --------------------------------------------------------------------- attribute specified here -... -2538 | pub fn rotate_left(x: T, shift: u32) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2553:5 - | -2550 | #[rustc_const_stable(feature = "const_int_rotate", since = "1.40.0")] - | --------------------------------------------------------------------- attribute specified here -... -2553 | pub fn rotate_right(x: T, shift: u32) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2568:5 - | -2565 | #[rustc_const_stable(feature = "const_int_wrapping", since = "1.40.0")] - | ----------------------------------------------------------------------- attribute specified here -... -2568 | pub fn wrapping_add(a: T, b: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2582:5 - | -2579 | #[rustc_const_stable(feature = "const_int_wrapping", since = "1.40.0")] - | ----------------------------------------------------------------------- attribute specified here -... -2582 | pub fn wrapping_sub(a: T, b: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2596:5 - | -2593 | #[rustc_const_stable(feature = "const_int_wrapping", since = "1.40.0")] - | ----------------------------------------------------------------------- attribute specified here -... -2596 | pub fn wrapping_mul(a: T, b: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2611:5 - | -2608 | #[rustc_const_stable(feature = "const_int_saturating", since = "1.40.0")] - | ------------------------------------------------------------------------- attribute specified here -... -2611 | pub fn saturating_add(a: T, b: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2625:5 - | -2622 | #[rustc_const_stable(feature = "const_int_saturating", since = "1.40.0")] - | ------------------------------------------------------------------------- attribute specified here -... -2625 | pub fn saturating_sub(a: T, b: T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2635:5 - | -2633 | #[rustc_const_stable(feature = "const_ptr_read", since = "1.71.0")] - | ------------------------------------------------------------------- attribute specified here -2634 | #[rustc_nounwind] -2635 | pub fn read_via_copy(ptr: *const T) -> T; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2659:5 - | -2656 | #[rustc_const_stable(feature = "const_discriminant", since = "1.75.0")] - | ----------------------------------------------------------------------- attribute specified here -... -2659 | pub fn discriminant_value(v: &T) -> ::Discriminant; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:2687:5 - | -2685 | #[rustc_const_stable(feature = "const_ptr_offset_from", since = "1.65.0")] - | -------------------------------------------------------------------------- attribute specified here -2686 | #[rustc_nounwind] -2687 | pub fn ptr_offset_from(ptr: *const T, base: *const T) -> isize; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:3046:1 - | -3043 | #[rustc_const_stable(feature = "const_size_of", since = "1.40.0")] - | ------------------------------------------------------------------ attribute specified here -... -3046 | pub const fn size_of() -> usize { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/intrinsics.rs:3063:1 - | -3060 | #[rustc_const_stable(feature = "const_min_align_of", since = "1.40.0")] - | ----------------------------------------------------------------------- attribute specified here -... -3063 | pub const fn min_align_of() -> usize { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:655:1 - | -653 | #[rustc_const_stable(feature = "stable_things_using_strict_provenance", since = "1.61.0")] - | ------------------------------------------------------------------------------------------ attribute specified here -654 | #[unstable(feature = "strict_provenance", issue = "95228")] -655 | pub const fn without_provenance(addr: usize) -> *const T { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:677:1 - | -675 | #[rustc_const_stable(feature = "stable_things_using_strict_provenance", since = "1.61.0")] - | ------------------------------------------------------------------------------------------ attribute specified here -676 | #[unstable(feature = "strict_provenance", issue = "95228")] -677 | pub const fn dangling() -> *const T { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:699:1 - | -697 | #[rustc_const_stable(feature = "stable_things_using_strict_provenance", since = "1.61.0")] - | ------------------------------------------------------------------------------------------ attribute specified here -698 | #[unstable(feature = "strict_provenance", issue = "95228")] -699 | pub const fn without_provenance_mut(addr: usize) -> *mut T { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:721:1 - | -719 | #[rustc_const_stable(feature = "stable_things_using_strict_provenance", since = "1.61.0")] - | ------------------------------------------------------------------------------------------ attribute specified here -720 | #[unstable(feature = "strict_provenance", issue = "95228")] -721 | pub const fn dangling_mut() -> *mut T { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:141:5 - | -140 | #[rustc_const_stable(feature = "const_cstr_methods", since = "1.72.0")] - | ----------------------------------------------------------------------- attribute specified here -141 | const fn interior_nul(pos: usize) -> FromBytesWithNulError { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:145:5 - | -144 | #[rustc_const_stable(feature = "const_cstr_methods", since = "1.72.0")] - | ----------------------------------------------------------------------- attribute specified here -145 | const fn not_nul_terminated() -> FromBytesWithNulError { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:735:1 - | -733 | #[rustc_const_stable(feature = "const_cstr_from_ptr", since = "1.81.0")] - | ------------------------------------------------------------------------ attribute specified here -734 | #[rustc_allow_const_fn_unstable(const_eval_select)] -735 | const unsafe fn strlen(ptr: *const c_char) -> usize { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2190:13 - | -2188 | #[$const_stable] - | ---------------- attribute specified here -2189 | #[must_use] -2190 | pub const fn new(v: $int_type) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2391:13 - | -2390 | #[rustc_const_stable(feature = "const_atomic_into_inner", since = "1.79.0")] - | ---------------------------------------------------------------------------- attribute specified here -2391 | pub const fn into_inner(self) -> $int_type { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2190:13 - | -2188 | #[$const_stable] - | ---------------- attribute specified here -2189 | #[must_use] -2190 | pub const fn new(v: $int_type) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2391:13 - | -2390 | #[rustc_const_stable(feature = "const_atomic_into_inner", since = "1.79.0")] - | ---------------------------------------------------------------------------- attribute specified here -2391 | pub const fn into_inner(self) -> $int_type { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/memchr.rs:19:1 - | -18 | #[rustc_const_stable(feature = "const_memchr", since = "1.65.0")] - | ----------------------------------------------------------------- attribute specified here -19 | const fn contains_zero_byte(x: usize) -> bool { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/memchr.rs:27:1 - | -26 | #[rustc_const_stable(feature = "const_memchr", since = "1.65.0")] - | ----------------------------------------------------------------- attribute specified here -27 | pub const fn memchr(x: u8, text: &[u8]) -> Option { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/memchr.rs:38:1 - | -37 | #[rustc_const_stable(feature = "const_memchr", since = "1.65.0")] - | ----------------------------------------------------------------- attribute specified here -38 | const fn memchr_naive(x: u8, text: &[u8]) -> Option { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/memchr.rs:57:1 - | -56 | #[rustc_const_stable(feature = "const_memchr", since = "1.65.0")] - | ----------------------------------------------------------------- attribute specified here -57 | const fn memchr_aligned(x: u8, text: &[u8]) -> Option { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:325:5 - | -324 | #[rustc_const_stable(feature = "const_waker", since = "1.82.0")] - | ---------------------------------------------------------------- attribute specified here -325 | pub const fn from_waker(waker: &'a Waker) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: attribute `#[rustc_const_stable]` can only be applied to functions that are declared `#[stable]` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:383:5 - | -382 | #[rustc_const_stable(feature = "const_waker", since = "1.82.0")] - | ---------------------------------------------------------------- attribute specified here -383 | pub const fn build(self) -> Context<'a> { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:282:22 - | -282 | more.checked_sub(1) - | ^^^^^^^^^^^ multiple `checked_sub` found - | - = note: candidate #1 is defined in an impl for the type `usize` -note: candidate #2 is defined in an impl for the type `usize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:656:9 - | -656 | pub const fn checked_sub(self, rhs: Self) -> Option { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/async_drop.rs:204:46 - | -204 | unsafe { async_drop_in_place_raw(ptr.add(i)).await } - | ^^^ multiple `add` found - | - = note: candidate #1 is defined in an impl for the type `*mut T` -note: candidate #2 is defined in an impl for the type `*mut T` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mut_ptr.rs:950:5 - | -950 | / pub const unsafe fn add(self, count: usize) -> Self -951 | | where -952 | | T: Sized, - | |_________________^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i128.rs:11:1 - | -11 | int_module! { i128, #[stable(feature = "i128", since="1.26.0")] } - | ----------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i128` -note: candidate #2 is defined in an impl for the type `i128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:376:5 - | -376 | / int_impl! { -377 | | Self = i128, -378 | | ActualT = i128, -379 | | UnsignedT = u128, -... | -396 | | bound_condition = "", -397 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i128.rs:11:1 - | -11 | int_module! { i128, #[stable(feature = "i128", since="1.26.0")] } - | ----------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i128` -note: candidate #2 is defined in an impl for the type `i128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:376:5 - | -376 | / int_impl! { -377 | | Self = i128, -378 | | ActualT = i128, -379 | | UnsignedT = u128, -... | -396 | | bound_condition = "", -397 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i16.rs:11:1 - | -11 | int_module! { i16 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i16` -note: candidate #2 is defined in an impl for the type `i16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:307:5 - | -307 | / int_impl! { -308 | | Self = i16, -309 | | ActualT = i16, -310 | | UnsignedT = u16, -... | -325 | | bound_condition = "", -326 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i16.rs:11:1 - | -11 | int_module! { i16 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i16` -note: candidate #2 is defined in an impl for the type `i16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:307:5 - | -307 | / int_impl! { -308 | | Self = i16, -309 | | ActualT = i16, -310 | | UnsignedT = u16, -... | -325 | | bound_condition = "", -326 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i32.rs:11:1 - | -11 | int_module! { i32 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i32` -note: candidate #2 is defined in an impl for the type `i32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:330:5 - | -330 | / int_impl! { -331 | | Self = i32, -332 | | ActualT = i32, -333 | | UnsignedT = u32, -... | -348 | | bound_condition = "", -349 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i32.rs:11:1 - | -11 | int_module! { i32 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i32` -note: candidate #2 is defined in an impl for the type `i32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:330:5 - | -330 | / int_impl! { -331 | | Self = i32, -332 | | ActualT = i32, -333 | | UnsignedT = u32, -... | -348 | | bound_condition = "", -349 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i64.rs:11:1 - | -11 | int_module! { i64 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i64` -note: candidate #2 is defined in an impl for the type `i64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:353:5 - | -353 | / int_impl! { -354 | | Self = i64, -355 | | ActualT = i64, -356 | | UnsignedT = u64, -... | -371 | | bound_condition = "", -372 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i64.rs:11:1 - | -11 | int_module! { i64 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i64` -note: candidate #2 is defined in an impl for the type `i64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:353:5 - | -353 | / int_impl! { -354 | | Self = i64, -355 | | ActualT = i64, -356 | | UnsignedT = u64, -... | -371 | | bound_condition = "", -372 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i8.rs:11:1 - | -11 | int_module! { i8 } - | ------------------ in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i8` -note: candidate #2 is defined in an impl for the type `i8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:284:5 - | -284 | / int_impl! { -285 | | Self = i8, -286 | | ActualT = i8, -287 | | UnsignedT = u8, -... | -302 | | bound_condition = "", -303 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/i8.rs:11:1 - | -11 | int_module! { i8 } - | ------------------ in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i8` -note: candidate #2 is defined in an impl for the type `i8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:284:5 - | -284 | / int_impl! { -285 | | Self = i8, -286 | | ActualT = i8, -287 | | UnsignedT = u8, -... | -302 | | bound_condition = "", -303 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/isize.rs:11:1 - | -11 | int_module! { isize } - | --------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `isize` -note: candidate #2 is defined in an impl for the type `isize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:450:5 - | -450 | / int_impl! { -451 | | Self = isize, -452 | | ActualT = i64, -453 | | UnsignedT = usize, -... | -468 | | bound_condition = " on 64-bit targets", -469 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/isize.rs:11:1 - | -11 | int_module! { isize } - | --------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `isize` -note: candidate #2 is defined in an impl for the type `isize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:450:5 - | -450 | / int_impl! { -451 | | Self = isize, -452 | | ActualT = i64, -453 | | UnsignedT = usize, -... | -468 | | bound_condition = " on 64-bit targets", -469 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u128.rs:11:1 - | -11 | int_module! { u128, #[stable(feature = "i128", since="1.26.0")] } - | ----------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u128` -note: candidate #2 is defined in an impl for the type `u128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:36:9 - | -36 | pub const MIN: Self = 0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1188:5 - | -1188 | / uint_impl! { -1189 | | Self = u128, -1190 | | ActualT = u128, -1191 | | SignedT = i128, -... | -1207 | | bound_condition = "", -1208 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u128.rs:11:1 - | -11 | int_module! { u128, #[stable(feature = "i128", since="1.26.0")] } - | ----------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u128` -note: candidate #2 is defined in an impl for the type `u128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1188:5 - | -1188 | / uint_impl! { -1189 | | Self = u128, -1190 | | ActualT = u128, -1191 | | SignedT = i128, -... | -1207 | | bound_condition = "", -1208 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u16.rs:11:1 - | -11 | int_module! { u16 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:36:9 - | -36 | pub const MIN: Self = 0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u16.rs:11:1 - | -11 | int_module! { u16 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u32.rs:11:1 - | -11 | int_module! { u32 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:36:9 - | -36 | pub const MIN: Self = 0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u32.rs:11:1 - | -11 | int_module! { u32 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u64.rs:11:1 - | -11 | int_module! { u64 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:36:9 - | -36 | pub const MIN: Self = 0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u64.rs:11:1 - | -11 | int_module! { u64 } - | ------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u8.rs:11:1 - | -11 | int_module! { u8 } - | ------------------ in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u8` -note: candidate #2 is defined in an impl for the type `u8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:36:9 - | -36 | pub const MIN: Self = 0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:476:5 - | -476 | / uint_impl! { -477 | | Self = u8, -478 | | ActualT = u8, -479 | | SignedT = i8, -... | -493 | | bound_condition = "", -494 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/u8.rs:11:1 - | -11 | int_module! { u8 } - | ------------------ in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u8` -note: candidate #2 is defined in an impl for the type `u8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:476:5 - | -476 | / uint_impl! { -477 | | Self = u8, -478 | | ActualT = u8, -479 | | SignedT = i8, -... | -493 | | bound_condition = "", -494 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:24:33 - | -24 | pub const MIN: $T = $T::MIN; - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/usize.rs:11:1 - | -11 | int_module! { usize } - | --------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `usize` -note: candidate #2 is defined in an impl for the type `usize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:36:9 - | -36 | pub const MIN: Self = 0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/int_macros.rs:44:33 - | -44 | pub const MAX: $T = $T::MAX; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/shells/usize.rs:11:1 - | -11 | int_module! { usize } - | --------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `usize` -note: candidate #2 is defined in an impl for the type `usize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_module` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f128.rs:839:32 - | -839 | const LO: f128 = f128::MIN_POSITIVE * 2.; - | ^^^^^^^^^^^^ multiple `MIN_POSITIVE` found - | - = note: candidate #1 is defined in an impl for the type `f128` -note: candidate #2 is defined in an impl for the type `f128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f128.rs:188:5 - | -188 | pub const MIN_POSITIVE: f128 = 3.36210314311209350626267781732175260e-4932_f128; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f128.rs:840:32 - | -840 | const HI: f128 = f128::MAX / 2.; - | ^^^ multiple `MAX` found - | - = note: candidate #1 is defined in an impl for the type `f128` -note: candidate #2 is defined in an impl for the type `f128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f128.rs:197:5 - | -197 | pub const MAX: f128 = 1.18973149535723176508575932662800702e+4932_f128; - | ^^^^^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f128.rs:1217:22 - | -1217 | pub fn total_cmp(&self, other: &Self) -> crate::cmp::Ordering { - | ^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f16.rs:849:30 - | -849 | const LO: f16 = f16::MIN_POSITIVE * 2.; - | ^^^^^^^^^^^^ multiple `MIN_POSITIVE` found - | - = note: candidate #1 is defined in an impl for the type `f16` -note: candidate #2 is defined in an impl for the type `f16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f16.rs:183:5 - | -183 | pub const MIN_POSITIVE: f16 = 6.1035e-5_f16; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f16.rs:850:30 - | -850 | const HI: f16 = f16::MAX / 2.; - | ^^^ multiple `MAX` found - | - = note: candidate #1 is defined in an impl for the type `f16` -note: candidate #2 is defined in an impl for the type `f16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f16.rs:192:5 - | -192 | pub const MAX: f16 = 6.5504e+4_f16; - | ^^^^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f16.rs:1218:22 - | -1218 | pub fn total_cmp(&self, other: &Self) -> crate::cmp::Ordering { - | ^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:36:29 - | -36 | pub const RADIX: u32 = f32::RADIX; - | ^^^^^ multiple `RADIX` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:392:5 - | -392 | pub const RADIX: u32 = 2; - | ^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:57:39 - | -57 | pub const MANTISSA_DIGITS: u32 = f32::MANTISSA_DIGITS; - | ^^^^^^^^^^^^^^^ multiple `MANTISSA_DIGITS` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:396:5 - | -396 | pub const MANTISSA_DIGITS: u32 = 24; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:75:30 - | -75 | pub const DIGITS: u32 = f32::DIGITS; - | ^^^^^^ multiple `DIGITS` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:407:5 - | -407 | pub const DIGITS: u32 = 6; - | ^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:97:31 - | -97 | pub const EPSILON: f32 = f32::EPSILON; - | ^^^^^^^ multiple `EPSILON` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:418:5 - | -418 | pub const EPSILON: f32 = 1.19209290e-07_f32; - | ^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:115:27 - | -115 | pub const MIN: f32 = f32::MIN; - | ^^^ multiple `MIN` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:426:5 - | -426 | pub const MIN: f32 = -3.40282347e+38_f32; - | ^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:133:36 - | -133 | pub const MIN_POSITIVE: f32 = f32::MIN_POSITIVE; - | ^^^^^^^^^^^^ multiple `MIN_POSITIVE` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:433:5 - | -433 | pub const MIN_POSITIVE: f32 = 1.17549435e-38_f32; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:151:27 - | -151 | pub const MAX: f32 = f32::MAX; - | ^^^ multiple `MAX` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:442:5 - | -442 | pub const MAX: f32 = 3.40282347e+38_f32; - | ^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:169:31 - | -169 | pub const MIN_EXP: i32 = f32::MIN_EXP; - | ^^^^^^^ multiple `MIN_EXP` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:449:5 - | -449 | pub const MIN_EXP: i32 = -125; - | ^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:187:31 - | -187 | pub const MAX_EXP: i32 = f32::MAX_EXP; - | ^^^^^^^ multiple `MAX_EXP` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:455:5 - | -455 | pub const MAX_EXP: i32 = 128; - | ^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:205:34 - | -205 | pub const MIN_10_EXP: i32 = f32::MIN_10_EXP; - | ^^^^^^^^^^ multiple `MIN_10_EXP` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:463:5 - | -463 | pub const MIN_10_EXP: i32 = -37; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:223:34 - | -223 | pub const MAX_10_EXP: i32 = f32::MAX_10_EXP; - | ^^^^^^^^^^ multiple `MAX_10_EXP` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:470:5 - | -470 | pub const MAX_10_EXP: i32 = 38; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:241:27 - | -241 | pub const NAN: f32 = f32::NAN; - | ^^^ multiple `NAN` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:485:5 - | -485 | pub const NAN: f32 = 0.0_f32 / 0.0_f32; - | ^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:259:32 - | -259 | pub const INFINITY: f32 = f32::INFINITY; - | ^^^^^^^^ multiple `INFINITY` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:488:5 - | -488 | pub const INFINITY: f32 = 1.0_f32 / 0.0_f32; - | ^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:277:36 - | -277 | pub const NEG_INFINITY: f32 = f32::NEG_INFINITY; - | ^^^^^^^^^^^^ multiple `NEG_INFINITY` found - | - = note: candidate #1 is defined in an impl for the type `f32` -note: candidate #2 is defined in an impl for the type `f32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:491:5 - | -491 | pub const NEG_INFINITY: f32 = -1.0_f32 / 0.0_f32; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f32.rs:1377:22 - | -1377 | pub fn total_cmp(&self, other: &Self) -> crate::cmp::Ordering { - | ^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:36:29 - | -36 | pub const RADIX: u32 = f64::RADIX; - | ^^^^^ multiple `RADIX` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:392:5 - | -392 | pub const RADIX: u32 = 2; - | ^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:57:39 - | -57 | pub const MANTISSA_DIGITS: u32 = f64::MANTISSA_DIGITS; - | ^^^^^^^^^^^^^^^ multiple `MANTISSA_DIGITS` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:396:5 - | -396 | pub const MANTISSA_DIGITS: u32 = 53; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:75:30 - | -75 | pub const DIGITS: u32 = f64::DIGITS; - | ^^^^^^ multiple `DIGITS` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:406:5 - | -406 | pub const DIGITS: u32 = 15; - | ^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:97:31 - | -97 | pub const EPSILON: f64 = f64::EPSILON; - | ^^^^^^^ multiple `EPSILON` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:417:5 - | -417 | pub const EPSILON: f64 = 2.2204460492503131e-16_f64; - | ^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:115:27 - | -115 | pub const MIN: f64 = f64::MIN; - | ^^^ multiple `MIN` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:425:5 - | -425 | pub const MIN: f64 = -1.7976931348623157e+308_f64; - | ^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:133:36 - | -133 | pub const MIN_POSITIVE: f64 = f64::MIN_POSITIVE; - | ^^^^^^^^^^^^ multiple `MIN_POSITIVE` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:432:5 - | -432 | pub const MIN_POSITIVE: f64 = 2.2250738585072014e-308_f64; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:151:27 - | -151 | pub const MAX: f64 = f64::MAX; - | ^^^ multiple `MAX` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:441:5 - | -441 | pub const MAX: f64 = 1.7976931348623157e+308_f64; - | ^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:169:31 - | -169 | pub const MIN_EXP: i32 = f64::MIN_EXP; - | ^^^^^^^ multiple `MIN_EXP` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:448:5 - | -448 | pub const MIN_EXP: i32 = -1021; - | ^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:187:31 - | -187 | pub const MAX_EXP: i32 = f64::MAX_EXP; - | ^^^^^^^ multiple `MAX_EXP` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:454:5 - | -454 | pub const MAX_EXP: i32 = 1024; - | ^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:205:34 - | -205 | pub const MIN_10_EXP: i32 = f64::MIN_10_EXP; - | ^^^^^^^^^^ multiple `MIN_10_EXP` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:462:5 - | -462 | pub const MIN_10_EXP: i32 = -307; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:223:34 - | -223 | pub const MAX_10_EXP: i32 = f64::MAX_10_EXP; - | ^^^^^^^^^^ multiple `MAX_10_EXP` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:469:5 - | -469 | pub const MAX_10_EXP: i32 = 308; - | ^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:241:27 - | -241 | pub const NAN: f64 = f64::NAN; - | ^^^ multiple `NAN` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:484:5 - | -484 | pub const NAN: f64 = 0.0_f64 / 0.0_f64; - | ^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:259:32 - | -259 | pub const INFINITY: f64 = f64::INFINITY; - | ^^^^^^^^ multiple `INFINITY` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:487:5 - | -487 | pub const INFINITY: f64 = 1.0_f64 / 0.0_f64; - | ^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:277:36 - | -277 | pub const NEG_INFINITY: f64 = f64::NEG_INFINITY; - | ^^^^^^^^^^^^ multiple `NEG_INFINITY` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:490:5 - | -490 | pub const NEG_INFINITY: f64 = -1.0_f64 / 0.0_f64; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:1040:30 - | -1040 | const LO: f64 = f64::MIN_POSITIVE * 2.; - | ^^^^^^^^^^^^ multiple `MIN_POSITIVE` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:432:5 - | -432 | pub const MIN_POSITIVE: f64 = 2.2250738585072014e-308_f64; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:1041:30 - | -1041 | const HI: f64 = f64::MAX / 2.; - | ^^^ multiple `MAX` found - | - = note: candidate #1 is defined in an impl for the type `f64` -note: candidate #2 is defined in an impl for the type `f64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:441:5 - | -441 | pub const MAX: f64 = 1.7976931348623157e+308_f64; - | ^^^^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/f64.rs:1373:22 - | -1373 | pub fn total_cmp(&self, other: &Self) -> crate::cmp::Ordering { - | ^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:1670:68 - | -1670 | crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:284:5 - | -284 | / int_impl! { -285 | | Self = i8, -286 | | ActualT = i8, -287 | | UnsignedT = u8, -... | -302 | | bound_condition = "", -303 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i8` -note: candidate #2 is defined in an impl for the type `i8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:284:5 - | -284 | / int_impl! { -285 | | Self = i8, -286 | | ActualT = i8, -287 | | UnsignedT = u8, -... | -302 | | bound_condition = "", -303 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:3201:45 - | -3201 | const U: $UnsignedT = <$SelfT>::MIN.unsigned_abs(); - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:284:5 - | -284 | / int_impl! { -285 | | Self = i8, -286 | | ActualT = i8, -287 | | UnsignedT = u8, -... | -302 | | bound_condition = "", -303 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i8` -note: candidate #2 is defined in an impl for the type `i8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:284:5 - | -284 | / int_impl! { -285 | | Self = i8, -286 | | ActualT = i8, -287 | | UnsignedT = u8, -... | -302 | | bound_condition = "", -303 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:1670:68 - | -1670 | crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:307:5 - | -307 | / int_impl! { -308 | | Self = i16, -309 | | ActualT = i16, -310 | | UnsignedT = u16, -... | -325 | | bound_condition = "", -326 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i16` -note: candidate #2 is defined in an impl for the type `i16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:307:5 - | -307 | / int_impl! { -308 | | Self = i16, -309 | | ActualT = i16, -310 | | UnsignedT = u16, -... | -325 | | bound_condition = "", -326 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:3201:45 - | -3201 | const U: $UnsignedT = <$SelfT>::MIN.unsigned_abs(); - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:307:5 - | -307 | / int_impl! { -308 | | Self = i16, -309 | | ActualT = i16, -310 | | UnsignedT = u16, -... | -325 | | bound_condition = "", -326 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i16` -note: candidate #2 is defined in an impl for the type `i16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:307:5 - | -307 | / int_impl! { -308 | | Self = i16, -309 | | ActualT = i16, -310 | | UnsignedT = u16, -... | -325 | | bound_condition = "", -326 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:1670:68 - | -1670 | crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:330:5 - | -330 | / int_impl! { -331 | | Self = i32, -332 | | ActualT = i32, -333 | | UnsignedT = u32, -... | -348 | | bound_condition = "", -349 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i32` -note: candidate #2 is defined in an impl for the type `i32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:330:5 - | -330 | / int_impl! { -331 | | Self = i32, -332 | | ActualT = i32, -333 | | UnsignedT = u32, -... | -348 | | bound_condition = "", -349 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:3201:45 - | -3201 | const U: $UnsignedT = <$SelfT>::MIN.unsigned_abs(); - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:330:5 - | -330 | / int_impl! { -331 | | Self = i32, -332 | | ActualT = i32, -333 | | UnsignedT = u32, -... | -348 | | bound_condition = "", -349 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i32` -note: candidate #2 is defined in an impl for the type `i32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:330:5 - | -330 | / int_impl! { -331 | | Self = i32, -332 | | ActualT = i32, -333 | | UnsignedT = u32, -... | -348 | | bound_condition = "", -349 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:1670:68 - | -1670 | crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:353:5 - | -353 | / int_impl! { -354 | | Self = i64, -355 | | ActualT = i64, -356 | | UnsignedT = u64, -... | -371 | | bound_condition = "", -372 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i64` -note: candidate #2 is defined in an impl for the type `i64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:353:5 - | -353 | / int_impl! { -354 | | Self = i64, -355 | | ActualT = i64, -356 | | UnsignedT = u64, -... | -371 | | bound_condition = "", -372 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:3201:45 - | -3201 | const U: $UnsignedT = <$SelfT>::MIN.unsigned_abs(); - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:353:5 - | -353 | / int_impl! { -354 | | Self = i64, -355 | | ActualT = i64, -356 | | UnsignedT = u64, -... | -371 | | bound_condition = "", -372 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i64` -note: candidate #2 is defined in an impl for the type `i64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:353:5 - | -353 | / int_impl! { -354 | | Self = i64, -355 | | ActualT = i64, -356 | | UnsignedT = u64, -... | -371 | | bound_condition = "", -372 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:1670:68 - | -1670 | crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:376:5 - | -376 | / int_impl! { -377 | | Self = i128, -378 | | ActualT = i128, -379 | | UnsignedT = u128, -... | -396 | | bound_condition = "", -397 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i128` -note: candidate #2 is defined in an impl for the type `i128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:376:5 - | -376 | / int_impl! { -377 | | Self = i128, -378 | | ActualT = i128, -379 | | UnsignedT = u128, -... | -396 | | bound_condition = "", -397 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:3201:45 - | -3201 | const U: $UnsignedT = <$SelfT>::MIN.unsigned_abs(); - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:376:5 - | -376 | / int_impl! { -377 | | Self = i128, -378 | | ActualT = i128, -379 | | UnsignedT = u128, -... | -396 | | bound_condition = "", -397 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i128` -note: candidate #2 is defined in an impl for the type `i128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:376:5 - | -376 | / int_impl! { -377 | | Self = i128, -378 | | ActualT = i128, -379 | | UnsignedT = u128, -... | -396 | | bound_condition = "", -397 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:1670:68 - | -1670 | crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:450:5 - | -450 | / int_impl! { -451 | | Self = isize, -452 | | ActualT = i64, -453 | | UnsignedT = usize, -... | -468 | | bound_condition = " on 64-bit targets", -469 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i64` -note: candidate #2 is defined in an impl for the type `i64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:51:9 - | -51 | pub const MAX: Self = (<$UnsignedT>::MAX >> 1) as Self; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:353:5 - | -353 | / int_impl! { -354 | | Self = i64, -355 | | ActualT = i64, -356 | | UnsignedT = u64, -... | -371 | | bound_condition = "", -372 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:3201:45 - | -3201 | const U: $UnsignedT = <$SelfT>::MIN.unsigned_abs(); - | ^^^ multiple `MIN` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:450:5 - | -450 | / int_impl! { -451 | | Self = isize, -452 | | ActualT = i64, -453 | | UnsignedT = usize, -... | -468 | | bound_condition = " on 64-bit targets", -469 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `isize` -note: candidate #2 is defined in an impl for the type `isize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:38:9 - | -38 | pub const MIN: Self = !Self::MAX; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:450:5 - | -450 | / int_impl! { -451 | | Self = isize, -452 | | ActualT = i64, -453 | | UnsignedT = usize, -... | -468 | | bound_condition = " on 64-bit targets", -469 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:2784:87 - | -2784 | const MAX_RESULT: $SelfT = crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:476:5 - | -476 | / uint_impl! { -477 | | Self = u8, -478 | | ActualT = u8, -479 | | SignedT = i8, -... | -493 | | bound_condition = "", -494 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u8` -note: candidate #2 is defined in an impl for the type `u8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:476:5 - | -476 | / uint_impl! { -477 | | Self = u8, -478 | | ActualT = u8, -479 | | SignedT = i8, -... | -493 | | bound_condition = "", -494 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:2784:87 - | -2784 | const MAX_RESULT: $SelfT = crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:2784:87 - | -2784 | const MAX_RESULT: $SelfT = crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:2784:87 - | -2784 | const MAX_RESULT: $SelfT = crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:2784:87 - | -2784 | const MAX_RESULT: $SelfT = crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1188:5 - | -1188 | / uint_impl! { -1189 | | Self = u128, -1190 | | ActualT = u128, -1191 | | SignedT = i128, -... | -1207 | | bound_condition = "", -1208 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u128` -note: candidate #2 is defined in an impl for the type `u128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1188:5 - | -1188 | / uint_impl! { -1189 | | Self = u128, -1190 | | ActualT = u128, -1191 | | SignedT = i128, -... | -1207 | | bound_condition = "", -1208 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:2784:87 - | -2784 | const MAX_RESULT: $SelfT = crate::num::int_sqrt::$ActualT(<$ActualT>::MAX) as $SelfT; - | ^^^ multiple `MAX` found - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:49:9 - | -49 | pub const MAX: Self = !0; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:513:27 - | -513 | pub const fn is_ascii(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:522:27 - | -522 | pub const fn as_ascii(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:546:37 - | -546 | pub const fn to_ascii_uppercase(&self) -> u8 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:571:37 - | -571 | pub const fn to_ascii_lowercase(&self) -> u8 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:578:53 - | -578 | pub(crate) const fn ascii_change_case_unchecked(&self) -> u8 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:597:39 - | -597 | pub const fn eq_ignore_ascii_case(&self, other: &u8) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:622:33 - | -622 | pub fn make_ascii_uppercase(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:647:33 - | -647 | pub fn make_ascii_lowercase(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:683:38 - | -683 | pub const fn is_ascii_alphabetic(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:717:37 - | -717 | pub const fn is_ascii_uppercase(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:751:37 - | -751 | pub const fn is_ascii_lowercase(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:788:40 - | -788 | pub const fn is_ascii_alphanumeric(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:822:33 - | -822 | pub const fn is_ascii_digit(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:854:36 - | -854 | pub const fn is_ascii_octdigit(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:891:36 - | -891 | pub const fn is_ascii_hexdigit(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:929:39 - | -929 | pub const fn is_ascii_punctuation(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:966:35 - | -966 | pub const fn is_ascii_graphic(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1017:38 - | -1017 | pub const fn is_ascii_whitespace(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1053:35 - | -1053 | pub const fn is_ascii_control(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1330:16 - | -1330 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1330:23 - | -1330 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1330:34 - | -1330 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1330:38 - | -1330 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:114:27 - | -114 | pub fn digits(&self) -> &[$ty] { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:120:28 - | -120 | pub fn get_bit(&self, i: usize) -> u8 { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:128:28 - | -128 | pub fn is_zero(&self) -> bool { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:134:31 - | -134 | pub fn bit_length(&self) -> usize { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:147:28 - | -147 | pub fn add<'a>(&'a mut self, other: &$name) -> &'a mut $name { - | ^^^^^^^^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:165:30 - | -165 | pub fn add_small(&mut self, other: $ty) -> &mut $name { - | ^^^^^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:182:28 - | -182 | pub fn sub<'a>(&'a mut self, other: &$name) -> &'a mut $name { - | ^^^^^^^^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:199:30 - | -199 | pub fn mul_small(&mut self, other: $ty) -> &mut $name { - | ^^^^^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:216:29 - | -216 | pub fn mul_pow2(&mut self, bits: usize) -> &mut $name { - | ^^^^^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:255:29 - | -255 | pub fn mul_pow5(&mut self, mut e: usize) -> &mut $name { - | ^^^^^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:284:35 - | -284 | pub fn mul_digits<'a>(&'a mut self, other: &[$ty]) -> &'a mut $name { - | ^^^^^^^^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:325:34 - | -325 | pub fn div_rem_small(&mut self, other: $ty) -> (&mut $name, $ty) { - | ^^^^^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:342:28 - | -342 | pub fn div_rem(&self, d: &$name, q: &mut $name, r: &mut $name) { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:379:19 - | -379 | fn eq(&self, other: &$name) -> bool { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:387:28 - | -387 | fn partial_cmp(&self, other: &$name) -> crate::option::Option { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:393:20 - | -393 | fn cmp(&self, other: &$name) -> crate::cmp::Ordering { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:403:22 - | -403 | fn clone(&self) -> Self { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:409:20 - | -409 | fn fmt(&self, f: &mut crate::fmt::Formatter<'_>) -> crate::fmt::Result { - | ^^^^^ -... -426 | define_bignum!(Big32x40: type=Digit32, n=40); - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:114:27 - | -114 | pub fn digits(&self) -> &[$ty] { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:120:28 - | -120 | pub fn get_bit(&self, i: usize) -> u8 { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:128:28 - | -128 | pub fn is_zero(&self) -> bool { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:134:31 - | -134 | pub fn bit_length(&self) -> usize { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:147:28 - | -147 | pub fn add<'a>(&'a mut self, other: &$name) -> &'a mut $name { - | ^^^^^^^^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:165:30 - | -165 | pub fn add_small(&mut self, other: $ty) -> &mut $name { - | ^^^^^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:182:28 - | -182 | pub fn sub<'a>(&'a mut self, other: &$name) -> &'a mut $name { - | ^^^^^^^^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:199:30 - | -199 | pub fn mul_small(&mut self, other: $ty) -> &mut $name { - | ^^^^^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:216:29 - | -216 | pub fn mul_pow2(&mut self, bits: usize) -> &mut $name { - | ^^^^^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:255:29 - | -255 | pub fn mul_pow5(&mut self, mut e: usize) -> &mut $name { - | ^^^^^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:284:35 - | -284 | pub fn mul_digits<'a>(&'a mut self, other: &[$ty]) -> &'a mut $name { - | ^^^^^^^^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:325:34 - | -325 | pub fn div_rem_small(&mut self, other: $ty) -> (&mut $name, $ty) { - | ^^^^^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:342:28 - | -342 | pub fn div_rem(&self, d: &$name, q: &mut $name, r: &mut $name) { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:379:19 - | -379 | fn eq(&self, other: &$name) -> bool { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:387:28 - | -387 | fn partial_cmp(&self, other: &$name) -> crate::option::Option { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:393:20 - | -393 | fn cmp(&self, other: &$name) -> crate::cmp::Ordering { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:403:22 - | -403 | fn clone(&self) -> Self { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/bignum.rs:409:20 - | -409 | fn fmt(&self, f: &mut crate::fmt::Formatter<'_>) -> crate::fmt::Result { - | ^^^^^ -... -431 | define_bignum!(Big8x3: type=u8, n=3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `define_bignum` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:179:10 - | -179 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:179:17 - | -179 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:179:24 - | -179 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:179:35 - | -179 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:185:10 - | -185 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:185:17 - | -185 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:185:24 - | -185 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:185:35 - | -185 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:194:20 - | -194 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/mod.rs:204:12 - | -204 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/common.rs:22:17 - | -22 | fn read_u64(&self) -> u64 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/common.rs:29:18 - | -29 | fn write_u64(&mut self, value: u64) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/common.rs:34:20 - | -34 | fn offset_from(&self, other: &Self) -> isize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/common.rs:39:21 - | -39 | fn parse_digits(&self, mut func: impl FnMut(u8)) -> &Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/common.rs:66:10 - | -66 | #[derive(Debug, Copy, Clone, PartialEq, Eq, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/common.rs:66:23 - | -66 | #[derive(Debug, Copy, Clone, PartialEq, Eq, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/common.rs:66:30 - | -66 | #[derive(Debug, Copy, Clone, PartialEq, Eq, Default)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/common.rs:66:41 - | -66 | #[derive(Debug, Copy, Clone, PartialEq, Eq, Default)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/decimal.rs:14:10 - | -14 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/decimal.rs:64:26 - | -64 | pub fn try_add_digit(&mut self, digit: u8) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/decimal.rs:72:17 - | -72 | pub fn trim(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/decimal.rs:86:18 - | -86 | pub fn round(&self) -> u64 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/decimal.rs:114:23 - | -114 | pub fn left_shift(&mut self, shift: usize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/decimal.rs:155:24 - | -155 | pub fn right_shift(&mut self, shift: usize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/number.rs:26:10 - | -26 | #[derive(Clone, Copy, Debug, Default, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/number.rs:26:23 - | -26 | #[derive(Clone, Copy, Debug, Default, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/number.rs:26:39 - | -26 | #[derive(Clone, Copy, Debug, Default, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/number.rs:26:50 - | -26 | #[derive(Clone, Copy, Debug, Default, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/number.rs:37:34 - | -37 | fn is_fast_path(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/dec2flt/number.rs:53:39 - | -53 | pub fn try_fast_path(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/diy_float.rs:13:16 - | -13 | #[derive(Copy, Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/diy_float.rs:13:23 - | -13 | #[derive(Copy, Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/diy_float.rs:24:16 - | -24 | pub fn mul(&self, other: &Fp) -> Fp { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/diy_float.rs:41:22 - | -41 | pub fn normalize(&self) -> Fp { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/diy_float.rs:74:25 - | -74 | pub fn normalize_to(&self, e: i16) -> Fp { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/mod.rs:299:16 - | -299 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/mod.rs:299:23 - | -299 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/mod.rs:299:34 - | -299 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/mod.rs:299:38 - | -299 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/decoder.rs:13:16 - | -13 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/decoder.rs:13:23 - | -13 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/decoder.rs:13:30 - | -13 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/decoder.rs:13:41 - | -13 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/decoder.rs:30:16 - | -30 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/decoder.rs:30:23 - | -30 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/decoder.rs:30:30 - | -30 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/flt2dec/decoder.rs:30:41 - | -30 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/fmt.rs:10:16 - | -10 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/fmt.rs:10:23 - | -10 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/fmt.rs:10:34 - | -10 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/fmt.rs:10:38 - | -10 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/fmt.rs:22:16 - | -22 | pub fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/fmt.rs:45:18 - | -45 | pub fn write(&self, out: &mut [u8]) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/fmt.rs:74:10 - | -74 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/fmt.rs:84:16 - | -84 | pub fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/fmt.rs:95:18 - | -95 | pub fn write(&self, out: &mut [u8]) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:9:10 - | -9 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:9:23 - | -9 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:9:30 - | -9 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:9:41 - | -9 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:14:12 - | -14 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:23:20 - | -23 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:64:10 - | -64 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:64:17 - | -64 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:64:24 - | -64 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:64:35 - | -64 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:82:10 - | -82 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:82:17 - | -82 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:82:24 - | -82 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:82:35 - | -82 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:118:23 - | -118 | pub const fn kind(&self) -> &IntErrorKind { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:125:12 - | -125 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/error.rs:134:20 - | -134 | fn description(&self) -> &str { - | ^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:23:50 - | -23 | result[n] = (isqrt_n as u8, (n - isqrt_n.pow(2)) as u8); - | ^^^ multiple `pow` found - | - = note: candidate #1 is defined in an impl for the type `usize` -note: candidate #2 is defined in an impl for the type `usize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:2716:9 - | -2716 | pub const fn pow(self, mut exp: u32) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:26:31 - | -26 | if n == (isqrt_n + 1).pow(2) { - | ^^^ multiple `pow` found - | - = note: candidate #1 is defined in an impl for the type `usize` -note: candidate #2 is defined in an impl for the type `usize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:2716:9 - | -2716 | pub const fn pow(self, mut exp: u32) -> Self { - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:233:39 - | -233 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -260 | last_stage!(u16, n, s, r) - | ------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `last_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:234:42 - | -234 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -260 | last_stage!(u16, n, s, r) - | ------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `last_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:178:54 - | -178 | const N_SHIFT: u32 = $original_bits - <$ty>::BITS; - | ^^^^ multiple `BITS` found -... -272 | let (s, r) = middle_stage!(32, u16, n, s, r); - | ------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:181:39 - | -181 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -272 | let (s, r) = middle_stage!(32, u16, n, s, r); - | ------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:182:42 - | -182 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -272 | let (s, r) = middle_stage!(32, u16, n, s, r); - | ------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:233:39 - | -233 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -273 | last_stage!(u32, n, s, r) - | ------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `last_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:234:42 - | -234 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -273 | last_stage!(u32, n, s, r) - | ------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `last_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:178:54 - | -178 | const N_SHIFT: u32 = $original_bits - <$ty>::BITS; - | ^^^^ multiple `BITS` found -... -285 | let (s, r) = middle_stage!(64, u16, n, s, r); - | ------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:181:39 - | -181 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -285 | let (s, r) = middle_stage!(64, u16, n, s, r); - | ------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:182:42 - | -182 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -285 | let (s, r) = middle_stage!(64, u16, n, s, r); - | ------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:178:54 - | -178 | const N_SHIFT: u32 = $original_bits - <$ty>::BITS; - | ^^^^ multiple `BITS` found -... -286 | let (s, r) = middle_stage!(64, u32, n, s, r); - | ------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:181:39 - | -181 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -286 | let (s, r) = middle_stage!(64, u32, n, s, r); - | ------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:182:42 - | -182 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -286 | let (s, r) = middle_stage!(64, u32, n, s, r); - | ------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:233:39 - | -233 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -287 | last_stage!(u64, n, s, r) - | ------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `last_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:234:42 - | -234 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -287 | last_stage!(u64, n, s, r) - | ------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `last_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:178:54 - | -178 | const N_SHIFT: u32 = $original_bits - <$ty>::BITS; - | ^^^^ multiple `BITS` found -... -299 | let (s, r) = middle_stage!(128, u16, n, s, r); - | -------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:181:39 - | -181 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -299 | let (s, r) = middle_stage!(128, u16, n, s, r); - | -------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:182:42 - | -182 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -299 | let (s, r) = middle_stage!(128, u16, n, s, r); - | -------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:178:54 - | -178 | const N_SHIFT: u32 = $original_bits - <$ty>::BITS; - | ^^^^ multiple `BITS` found -... -300 | let (s, r) = middle_stage!(128, u32, n, s, r); - | -------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:181:39 - | -181 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -300 | let (s, r) = middle_stage!(128, u32, n, s, r); - | -------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:182:42 - | -182 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -300 | let (s, r) = middle_stage!(128, u32, n, s, r); - | -------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:178:54 - | -178 | const N_SHIFT: u32 = $original_bits - <$ty>::BITS; - | ^^^^ multiple `BITS` found -... -301 | let (s, r) = middle_stage!(128, u64, n, s, r); - | -------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:181:39 - | -181 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -301 | let (s, r) = middle_stage!(128, u64, n, s, r); - | -------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:182:42 - | -182 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -301 | let (s, r) = middle_stage!(128, u64, n, s, r); - | -------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `middle_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:233:39 - | -233 | const HALF_BITS: u32 = <$ty>::BITS >> 1; - | ^^^^ multiple `BITS` found -... -302 | last_stage!(u128, n, s, r) - | -------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u128` -note: candidate #2 is defined in an impl for the type `u128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1188:5 - | -1188 | / uint_impl! { -1189 | | Self = u128, -1190 | | ActualT = u128, -1191 | | SignedT = i128, -... | -1207 | | bound_condition = "", -1208 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `last_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_sqrt.rs:234:42 - | -234 | const QUARTER_BITS: u32 = <$ty>::BITS >> 2; - | ^^^^ multiple `BITS` found -... -302 | last_stage!(u128, n, s, r) - | -------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u128` -note: candidate #2 is defined in an impl for the type `u128` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1188:5 - | -1188 | / uint_impl! { -1189 | | Self = u128, -1190 | | ActualT = u128, -1191 | | SignedT = i128, -... | -1207 | | bound_condition = "", -1208 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `last_stage` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:120:20 - | -120 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -127 | impl_nonzero_fmt!(Debug); - | ------------------------ in this macro invocation - | - = note: this error originates in the macro `impl_nonzero_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:120:20 - | -120 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -128 | impl_nonzero_fmt!(Display); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_nonzero_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:120:20 - | -120 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -129 | impl_nonzero_fmt!(Binary); - | ------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_nonzero_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:120:20 - | -120 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -130 | impl_nonzero_fmt!(Octal); - | ------------------------ in this macro invocation - | - = note: this error originates in the macro `impl_nonzero_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:120:20 - | -120 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -131 | impl_nonzero_fmt!(LowerHex); - | --------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_nonzero_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:120:20 - | -120 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -132 | impl_nonzero_fmt!(UpperHex); - | --------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_nonzero_fmt` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:160:14 - | -160 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:174:11 - | -174 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:179:11 - | -179 | fn ne(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:196:20 - | -196 | fn partial_cmp(&self, other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:201:11 - | -201 | fn lt(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:206:11 - | -206 | fn le(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:211:11 - | -211 | fn gt(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:216:11 - | -216 | fn ge(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:227:12 - | -227 | fn cmp(&self, other: &Self) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:256:16 - | -256 | fn hash(&self, state: &mut H) - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:325:21 - | -325 | fn bitor_assign(&mut self, rhs: Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:337:21 - | -337 | fn bitor_assign(&mut self, rhs: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1169:27 - | -1169 | fn div_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -1985 | / nonzero_integer! { -1986 | | Self = NonZeroU8, -1987 | | Primitive = unsigned u8, -1988 | | rot = 2, -... | -1993 | | reversed = "0x48", -1994 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1191:27 - | -1191 | fn rem_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -1985 | / nonzero_integer! { -1986 | | Self = NonZeroU8, -1987 | | Primitive = unsigned u8, -1988 | | rot = 2, -... | -1993 | | reversed = "0x48", -1994 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1169:27 - | -1169 | fn div_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -1996 | / nonzero_integer! { -1997 | | Self = NonZeroU16, -1998 | | Primitive = unsigned u16, -1999 | | rot = 4, -... | -2004 | | reversed = "0x2c48", -2005 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1191:27 - | -1191 | fn rem_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -1996 | / nonzero_integer! { -1997 | | Self = NonZeroU16, -1998 | | Primitive = unsigned u16, -1999 | | rot = 4, -... | -2004 | | reversed = "0x2c48", -2005 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1169:27 - | -1169 | fn div_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -2007 | / nonzero_integer! { -2008 | | Self = NonZeroU32, -2009 | | Primitive = unsigned u32, -2010 | | rot = 8, -... | -2015 | | reversed = "0x1e6a2c48", -2016 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1191:27 - | -1191 | fn rem_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -2007 | / nonzero_integer! { -2008 | | Self = NonZeroU32, -2009 | | Primitive = unsigned u32, -2010 | | rot = 8, -... | -2015 | | reversed = "0x1e6a2c48", -2016 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1169:27 - | -1169 | fn div_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -2018 | / nonzero_integer! { -2019 | | Self = NonZeroU64, -2020 | | Primitive = unsigned u64, -2021 | | rot = 12, -... | -2026 | | reversed = "0x6a2c48091e6a2c48", -2027 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1191:27 - | -1191 | fn rem_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -2018 | / nonzero_integer! { -2019 | | Self = NonZeroU64, -2020 | | Primitive = unsigned u64, -2021 | | rot = 12, -... | -2026 | | reversed = "0x6a2c48091e6a2c48", -2027 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1169:27 - | -1169 | fn div_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -2029 | / nonzero_integer! { -2030 | | Self = NonZeroU128, -2031 | | Primitive = unsigned u128, -2032 | | rot = 16, -... | -2037 | | reversed = "0x48091e6a2c48091e6a2c48091e6a2c48", -2038 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1191:27 - | -1191 | fn rem_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -2029 | / nonzero_integer! { -2030 | | Self = NonZeroU128, -2031 | | Primitive = unsigned u128, -2032 | | rot = 16, -... | -2037 | | reversed = "0x48091e6a2c48091e6a2c48091e6a2c48", -2038 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1169:27 - | -1169 | fn div_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -2065 | / nonzero_integer! { -2066 | | Self = NonZeroUsize, -2067 | | Primitive = unsigned usize, -2068 | | rot = 12, -... | -2073 | | reversed = "0x6a2c48091e6a2c48", -2074 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:1191:27 - | -1191 | fn rem_assign(&mut self, other: NonZero<$Int>) { - | ^^^^^^^^^ -... -2065 | / nonzero_integer! { -2066 | | Self = NonZeroUsize, -2067 | | Primitive = unsigned usize, -2068 | | rot = 12, -... | -2073 | | reversed = "0x6a2c48091e6a2c48", -2074 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `nonzero_integer_signedness_dependent_impls` which comes from the expansion of the macro `nonzero_integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:26 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:33 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/nonzero.rs:48:46 - | -48 | #[derive(Debug, Clone, Copy, PartialEq)] - | ^^^^^^^^^ -... -81 | / impl_zeroable_primitive!( -82 | | NonZeroU8Inner(u8), -83 | | NonZeroU16Inner(u16), -84 | | NonZeroU32Inner(u32), -... | -93 | | NonZeroIsizeInner(isize), -94 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `impl_zeroable_primitive` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:35:10 - | -35 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:35:21 - | -35 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:35:25 - | -35 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:35:37 - | -35 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:35:42 - | -35 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:35:64 - | -35 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:42:12 - | -42 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:49:12 - | -49 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:56:12 - | -56 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:63:12 - | -63 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:70:12 - | -70 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:77:12 - | -77 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:226:27 - | -226 | fn add_assign(&mut self, other: Saturating<$t>) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:235:27 - | -235 | fn add_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:256:27 - | -256 | fn sub_assign(&mut self, other: Saturating<$t>) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:265:27 - | -265 | fn sub_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:286:27 - | -286 | fn mul_assign(&mut self, other: Saturating<$t>) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:295:27 - | -295 | fn mul_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:334:27 - | -334 | fn div_assign(&mut self, other: Saturating<$t>) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:343:27 - | -343 | fn div_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:364:27 - | -364 | fn rem_assign(&mut self, other: Saturating<$t>) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:373:27 - | -373 | fn rem_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:406:30 - | -406 | fn bitxor_assign(&mut self, other: Saturating<$t>) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:415:30 - | -415 | fn bitxor_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:436:29 - | -436 | fn bitor_assign(&mut self, other: Saturating<$t>) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:445:29 - | -445 | fn bitor_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:466:30 - | -466 | fn bitand_assign(&mut self, other: Saturating<$t>) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:475:30 - | -475 | fn bitand_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/saturating.rs:484:1 - | -484 | saturating_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `saturating_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:40:10 - | -40 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:40:21 - | -40 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:40:25 - | -40 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:40:37 - | -40 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:40:42 - | -40 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:40:64 - | -40 | #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:47:12 - | -47 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:54:12 - | -54 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:61:12 - | -61 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:68:12 - | -68 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:75:12 - | -75 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:82:12 - | -82 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:159:27 - | -159 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:180:27 - | -180 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sh_impl_unsigned` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:207:1 - | -207 | sh_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | -------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sh_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:227:27 - | -227 | fn add_assign(&mut self, other: Wrapping<$t>) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:236:27 - | -236 | fn add_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:257:27 - | -257 | fn sub_assign(&mut self, other: Wrapping<$t>) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:266:27 - | -266 | fn sub_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:287:27 - | -287 | fn mul_assign(&mut self, other: Wrapping<$t>) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:296:27 - | -296 | fn mul_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:317:27 - | -317 | fn div_assign(&mut self, other: Wrapping<$t>) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:326:27 - | -326 | fn div_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:347:27 - | -347 | fn rem_assign(&mut self, other: Wrapping<$t>) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:356:27 - | -356 | fn rem_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:389:30 - | -389 | fn bitxor_assign(&mut self, other: Wrapping<$t>) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:398:30 - | -398 | fn bitxor_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:419:29 - | -419 | fn bitor_assign(&mut self, other: Wrapping<$t>) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:428:29 - | -428 | fn bitor_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:449:30 - | -449 | fn bitand_assign(&mut self, other: Wrapping<$t>) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:458:30 - | -458 | fn bitand_assign(&mut self, other: $t) { - | ^^^^^^^^^ -... -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/wrapping.rs:478:1 - | -478 | wrapping_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `wrapping_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/mod.rs:1048:14 - | -1048 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/mod.rs:1055:11 - | -1055 | fn eq(&self, rhs: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/mod.rs:1065:30 - | -1065 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/mod.rs:1072:12 - | -1072 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/manually_drop.rs:48:16 - | -48 | #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/manually_drop.rs:48:23 - | -48 | #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/manually_drop.rs:48:39 - | -48 | #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/manually_drop.rs:48:50 - | -48 | #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/manually_drop.rs:48:54 - | -48 | #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/manually_drop.rs:48:66 - | -48 | #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/manually_drop.rs:48:71 - | -48 | #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/manually_drop.rs:158:14 - | -158 | fn deref(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/manually_drop.rs:166:18 - | -166 | fn deref_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:249:14 - | -249 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:257:12 - | -257 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:489:24 - | -489 | pub const fn write(&mut self, val: T) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:531:25 - | -531 | pub const fn as_ptr(&self) -> *const T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:572:29 - | -572 | pub const fn as_mut_ptr(&mut self) -> *mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:697:42 - | -697 | pub const unsafe fn assume_init_read(&self) -> T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:729:36 - | -729 | pub unsafe fn assume_init_drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:795:41 - | -795 | pub const unsafe fn assume_init_ref(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:912:41 - | -912 | pub const unsafe fn assume_init_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:1317:21 - | -1317 | pub fn as_bytes(&self) -> &[MaybeUninit] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:1348:25 - | -1348 | pub fn as_bytes_mut(&mut self) -> &mut [MaybeUninit] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:1459:13 - | -1459 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:1473:26 - | -1473 | default fn spec_fill(&mut self, value: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/maybe_uninit.rs:1489:18 - | -1489 | fn spec_fill(&mut self, value: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/transmutability.rs:148:10 - | -148 | #[derive(PartialEq, Eq, Clone, Copy, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/transmutability.rs:148:21 - | -148 | #[derive(PartialEq, Eq, Clone, Copy, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/transmutability.rs:148:25 - | -148 | #[derive(PartialEq, Eq, Clone, Copy, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/transmutability.rs:148:38 - | -148 | #[derive(PartialEq, Eq, Clone, Copy, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/mem/mod.rs:1389:17 - | -1389 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:2270:11 - | -2270 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:2280:20 - | -2280 | fn partial_cmp(&self, other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:2287:12 - | -2287 | fn cmp(&self, other: &Self) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:2294:31 - | -2294 | fn hash(&self, state: &mut HH) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:2301:12 - | -2301 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mod.rs:2308:12 - | -2308 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:15:16 - | -15 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:15:23 - | -15 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:15:34 - | -15 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:181:12 - | -181 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:226:12 - | -226 | fn cmp(&self, other: &Self) -> cmp::Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:235:20 - | -235 | fn partial_cmp(&self, other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:243:30 - | -243 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:317:16 - | -317 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:317:23 - | -317 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/alignment.rs:317:34 - | -317 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/metadata.rs:213:12 - | -213 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/metadata.rs:226:14 - | -226 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/metadata.rs:235:11 - | -235 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/metadata.rs:243:12 - | -243 | fn cmp(&self, other: &Self) -> crate::cmp::Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/metadata.rs:250:20 - | -250 | fn partial_cmp(&self, other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/metadata.rs:257:24 - | -257 | fn hash(&self, hasher: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/non_null.rs:373:36 - | -373 | pub const unsafe fn as_ref<'a>(&self) -> &'a T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/non_null.rs:411:36 - | -411 | pub const unsafe fn as_mut<'a>(&mut self) -> &'a mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/non_null.rs:1692:14 - | -1692 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/non_null.rs:1711:12 - | -1711 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/non_null.rs:1718:12 - | -1718 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/non_null.rs:1730:11 - | -1730 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/non_null.rs:1739:12 - | -1739 | fn cmp(&self, other: &Self) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/non_null.rs:1748:20 - | -1748 | fn partial_cmp(&self, other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/non_null.rs:1756:30 - | -1756 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/unique.rs:134:32 - | -134 | pub const unsafe fn as_ref(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/unique.rs:147:32 - | -147 | pub const unsafe fn as_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/unique.rs:166:14 - | -166 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/unique.rs:185:12 - | -185 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/unique.rs:192:12 - | -192 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/const_ptr.rs:1721:11 - | -1721 | fn eq(&self, other: &*const T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/const_ptr.rs:1734:12 - | -1734 | fn cmp(&self, other: &*const T) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/const_ptr.rs:1749:20 - | -1749 | fn partial_cmp(&self, other: &*const T) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/const_ptr.rs:1755:11 - | -1755 | fn lt(&self, other: &*const T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/const_ptr.rs:1761:11 - | -1761 | fn le(&self, other: &*const T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/const_ptr.rs:1767:11 - | -1767 | fn gt(&self, other: &*const T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/const_ptr.rs:1773:11 - | -1773 | fn ge(&self, other: &*const T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mut_ptr.rs:2145:11 - | -2145 | fn eq(&self, other: &*mut T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mut_ptr.rs:2157:12 - | -2157 | fn cmp(&self, other: &*mut T) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mut_ptr.rs:2172:20 - | -2172 | fn partial_cmp(&self, other: &*mut T) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mut_ptr.rs:2178:11 - | -2178 | fn lt(&self, other: &*mut T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mut_ptr.rs:2184:11 - | -2184 | fn le(&self, other: &*mut T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mut_ptr.rs:2190:11 - | -2190 | fn gt(&self, other: &*mut T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ptr/mut_ptr.rs:2196:11 - | -2196 | fn ge(&self, other: &*mut T) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/borrow.rs:211:15 - | -211 | fn borrow(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/borrow.rs:218:19 - | -218 | fn borrow_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/borrow.rs:225:15 - | -225 | fn borrow(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/borrow.rs:232:15 - | -232 | fn borrow(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/borrow.rs:239:19 - | -239 | fn borrow_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone.rs:275:31 - | -275 | unsafe fn clone_to_uninit(&self, dst: *mut Self) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone.rs:285:31 - | -285 | unsafe fn clone_to_uninit(&self, dst: *mut Self) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone.rs:295:31 - | -295 | unsafe fn clone_to_uninit(&self, dst: *mut Self) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone.rs:304:31 - | -304 | unsafe fn clone_to_uninit(&self, dst: *mut Self) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone/uninit.rs:107:13 - | -107 | fn push(&mut self, value: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone/uninit.rs:115:13 - | -115 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone.rs:325:30 - | -325 | fn clone(&self) -> Self { - | ^^^^^ -... -333 | / impl_clone! { -334 | | usize u8 u16 u32 u64 u128 -335 | | isize i8 i16 i32 i64 i128 -336 | | f16 f32 f64 f128 -337 | | bool char -338 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `impl_clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone.rs:343:18 - | -343 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone.rs:351:18 - | -351 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone.rs:359:18 - | -359 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/clone.rs:369:18 - | -369 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:375:10 - | -375 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:375:23 - | -375 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:375:34 - | -375 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:375:38 - | -375 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:375:50 - | -375 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:375:55 - | -375 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:375:62 - | -375 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:643:10 - | -643 | #[derive(PartialEq, Eq, Debug, Copy, Default, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:643:21 - | -643 | #[derive(PartialEq, Eq, Debug, Copy, Default, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:643:25 - | -643 | #[derive(PartialEq, Eq, Debug, Copy, Default, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:643:47 - | -643 | #[derive(PartialEq, Eq, Debug, Copy, Default, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:651:20 - | -651 | fn partial_cmp(&self, other: &Reverse) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:656:11 - | -656 | fn lt(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:660:11 - | -660 | fn le(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:664:11 - | -664 | fn gt(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:668:11 - | -668 | fn ge(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:676:12 - | -676 | fn cmp(&self, other: &Reverse) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:684:14 - | -684 | fn clone(&self) -> Reverse { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:689:19 - | -689 | fn clone_from(&mut self, source: &Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1489:15 - | -1489 | fn eq(&self, _other: &()) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1493:15 - | -1493 | fn ne(&self, _other: &()) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1479:23 - | -1479 | fn eq(&self, other: &$t) -> bool { (*self) == (*other) } - | ^^^^^ -... -1498 | / partial_eq_impl! { -1499 | | bool char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 -1500 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `partial_eq_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1481:23 - | -1481 | fn ne(&self, other: &$t) -> bool { (*self) != (*other) } - | ^^^^^ -... -1498 | / partial_eq_impl! { -1499 | | bool char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 -1500 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `partial_eq_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1539:24 - | -1539 | fn partial_cmp(&self, _: &()) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1547:24 - | -1547 | fn partial_cmp(&self, other: &bool) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1516:32 - | -1516 | fn partial_cmp(&self, other: &$t) -> Option { - | ^^^^^ -... -1552 | partial_ord_impl! { f16 f32 f64 f128 } - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `partial_ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1525:23 - | -1525 | fn lt(&self, other: &$t) -> bool { (*self) < (*other) } - | ^^^^^ -... -1552 | partial_ord_impl! { f16 f32 f64 f128 } - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `partial_ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1527:23 - | -1527 | fn le(&self, other: &$t) -> bool { (*self) <= (*other) } - | ^^^^^ -... -1552 | partial_ord_impl! { f16 f32 f64 f128 } - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `partial_ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1529:23 - | -1529 | fn ge(&self, other: &$t) -> bool { (*self) >= (*other) } - | ^^^^^ -... -1552 | partial_ord_impl! { f16 f32 f64 f128 } - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `partial_ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1531:23 - | -1531 | fn gt(&self, other: &$t) -> bool { (*self) > (*other) } - | ^^^^^ -... -1552 | partial_ord_impl! { f16 f32 f64 f128 } - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `partial_ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1585:16 - | -1585 | fn cmp(&self, _other: &()) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1593:16 - | -1593 | fn cmp(&self, other: &bool) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1559:32 - | -1559 | fn partial_cmp(&self, other: &$t) -> Option { - | ^^^^^ -... -1623 | ord_impl! { char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1563:23 - | -1563 | fn lt(&self, other: &$t) -> bool { (*self) < (*other) } - | ^^^^^ -... -1623 | ord_impl! { char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1565:23 - | -1565 | fn le(&self, other: &$t) -> bool { (*self) <= (*other) } - | ^^^^^ -... -1623 | ord_impl! { char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1567:23 - | -1567 | fn ge(&self, other: &$t) -> bool { (*self) >= (*other) } - | ^^^^^ -... -1623 | ord_impl! { char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1569:23 - | -1569 | fn gt(&self, other: &$t) -> bool { (*self) > (*other) } - | ^^^^^ -... -1623 | ord_impl! { char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1575:24 - | -1575 | fn cmp(&self, other: &$t) -> Ordering { - | ^^^^^ -... -1623 | ord_impl! { char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ---------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `ord_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1628:15 - | -1628 | fn eq(&self, _: &!) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1639:24 - | -1639 | fn partial_cmp(&self, _: &!) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1647:16 - | -1647 | fn cmp(&self, _: &!) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1660:15 - | -1660 | fn eq(&self, other: &&B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1664:15 - | -1664 | fn ne(&self, other: &&B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1674:24 - | -1674 | fn partial_cmp(&self, other: &&B) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1678:15 - | -1678 | fn lt(&self, other: &&B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1682:15 - | -1682 | fn le(&self, other: &&B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1686:15 - | -1686 | fn gt(&self, other: &&B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1690:15 - | -1690 | fn ge(&self, other: &&B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1700:16 - | -1700 | fn cmp(&self, other: &Self) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1715:15 - | -1715 | fn eq(&self, other: &&mut B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1719:15 - | -1719 | fn ne(&self, other: &&mut B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1729:24 - | -1729 | fn partial_cmp(&self, other: &&mut B) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1733:15 - | -1733 | fn lt(&self, other: &&mut B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1737:15 - | -1737 | fn le(&self, other: &&mut B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1741:15 - | -1741 | fn gt(&self, other: &&mut B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1745:15 - | -1745 | fn ge(&self, other: &&mut B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1755:16 - | -1755 | fn cmp(&self, other: &Self) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1768:15 - | -1768 | fn eq(&self, other: &&mut B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1772:15 - | -1772 | fn ne(&self, other: &&mut B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1783:15 - | -1783 | fn eq(&self, other: &&B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cmp.rs:1787:15 - | -1787 | fn ne(&self, other: &&B) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:701:15 - | -701 | fn as_ref(&self) -> &U { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:713:15 - | -713 | fn as_ref(&self) -> &U { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:733:15 - | -733 | fn as_mut(&mut self) -> &mut U { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:824:15 - | -824 | fn as_ref(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:832:15 - | -832 | fn as_mut(&mut self) -> &mut [T] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:840:15 - | -840 | fn as_ref(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:848:15 - | -848 | fn as_mut(&mut self) -> &mut str { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:908:14 - | -908 | fn clone(&self) -> Infallible { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:915:12 - | -915 | fn fmt(&self, _: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:922:12 - | -922 | fn fmt(&self, _: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:929:20 - | -929 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:936:11 - | -936 | fn eq(&self, _: &Infallible) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:946:20 - | -946 | fn partial_cmp(&self, _other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:953:12 - | -953 | fn cmp(&self, _other: &Self) -> crate::cmp::Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/convert/mod.rs:968:24 - | -968 | fn hash(&self, _: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:199:35 - | -199 | pub fn is(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:214:45 - | -214 | pub fn downcast_ref(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:227:45 - | -227 | pub fn downcast_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:241:35 - | -241 | pub fn is(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:248:45 - | -248 | pub fn downcast_ref(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:255:45 - | -255 | pub fn downcast_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:264:35 - | -264 | pub fn is(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:271:45 - | -271 | pub fn downcast_ref(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:278:45 - | -278 | pub fn downcast_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:337:20 - | -337 | pub fn sources(&self) -> Source<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:537:29 - | -537 | pub fn provide_value(&mut self, value: T) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:571:34 - | -571 | pub fn provide_value_with(&mut self, fulfil: impl FnOnce() -> T) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:606:45 - | -606 | pub fn provide_ref(&mut self, value: &'a T) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:646:9 - | -646 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:653:19 - | -653 | fn provide(&mut self, value: I::Reified) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:664:24 - | -664 | fn provide_with(&mut self, fulfil: impl FnOnce() -> I::Reified) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:754:46 - | -754 | pub fn would_be_satisfied_by_value_of(&self) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:842:44 - | -842 | pub fn would_be_satisfied_by_ref_of(&self) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:849:33 - | -849 | fn would_be_satisfied_by(&self) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:859:12 - | -859 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:935:30 - | -935 | pub(crate) fn as_request(&mut self) -> &mut Request<'a> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:959:20 - | -959 | fn downcast(&self) -> Option<&TaggedOption<'a, I>> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:974:24 - | -974 | fn downcast_mut(&mut self) -> Option<&mut TaggedOption<'a, I>> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:995:10 - | -995 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:995:17 - | -995 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1004:13 - | -1004 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1010:18 - | -1010 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1021:20 - | -1021 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1026:14 - | -1026 | fn cause(&self) -> Option<&dyn Error> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1030:15 - | -1030 | fn source(&self) -> Option<&(dyn Error + 'static)> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1034:20 - | -1034 | fn provide<'b>(&'b self, request: &mut Request<'b>) { - | ^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1042:20 - | -1042 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1050:20 - | -1050 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1058:20 - | -1058 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:1066:20 - | -1066 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:187:14 - | -187 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:901:14 - | -901 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:909:14 - | -909 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/error.rs:918:14 - | -918 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:757:24 - | -757 | fn hash(&self, _: &mut H) {} - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:762:11 - | -762 | fn eq(&self, _other: &PhantomData) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:772:20 - | -772 | fn partial_cmp(&self, _other: &PhantomData) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:779:12 - | -779 | fn cmp(&self, _other: &PhantomData) -> cmp::Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:789:14 - | -789 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:931:10 - | -931 | #[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:931:32 - | -931 | #[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:931:39 - | -931 | #[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:931:43 - | -931 | #[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:931:54 - | -931 | #[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:931:59 - | -931 | #[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/marker.rs:931:71 - | -931 | #[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:759:27 - | -759 | fn add_assign(&mut self, other: $t) { *self += other } - | ^^^^^^^^^ -... -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:766:1 - | -766 | add_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `add_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:826:27 - | -826 | fn sub_assign(&mut self, other: $t) { *self -= other } - | ^^^^^^^^^ -... -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:833:1 - | -833 | sub_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `sub_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:884:27 - | -884 | fn mul_assign(&mut self, other: $t) { *self *= other } - | ^^^^^^^^^ -... -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:891:1 - | -891 | mul_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `mul_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:941:27 - | -941 | fn div_assign(&mut self, other: $t) { *self /= other } - | ^^^^^^^^^ -... -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:948:1 - | -948 | div_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `div_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1002:27 - | -1002 | fn rem_assign(&mut self, other: $t) { *self %= other } - | ^^^^^^^^^ -... -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/arith.rs:1009:1 - | -1009 | rem_assign_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f16 f32 f64 f128 } - | ----------------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `rem_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/async_function.rs:15:38 - | -15 | extern "rust-call" fn async_call(&self, args: Args) -> Self::CallRefFuture<'_>; - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/async_function.rs:36:42 - | -36 | extern "rust-call" fn async_call_mut(&mut self, args: Args) -> Self::CallRefFuture<'_>; - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/async_function.rs:72:42 - | -72 | extern "rust-call" fn async_call(&self, args: A) -> Self::CallRefFuture<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/async_function.rs:84:46 - | -84 | extern "rust-call" fn async_call_mut(&mut self, args: A) -> Self::CallRefFuture<'_> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/async_function.rs:109:46 - | -109 | extern "rust-call" fn async_call_mut(&mut self, args: A) -> Self::CallRefFuture<'_> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:719:30 - | -719 | fn bitand_assign(&mut self, other: $t) { *self &= other } - | ^^^^^^^^^ -... -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:726:1 - | -726 | bitand_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitand_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:790:29 - | -790 | fn bitor_assign(&mut self, other: $t) { *self |= other } - | ^^^^^^^^^ -... -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:797:1 - | -797 | bitor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | ------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:861:30 - | -861 | fn bitxor_assign(&mut self, other: $t) { *self ^= other } - | ^^^^^^^^^ -... -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:868:1 - | -868 | bitxor_assign_impl! { bool usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 } - | -------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `bitxor_assign_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:923:27 - | -923 | fn shl_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shl_assign_impl` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:950:1 - | -950 | shl_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shl_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1005:27 - | -1005 | fn shr_assign(&mut self, other: $f) { - | ^^^^^^^^^ -... -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `shr_assign_impl` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:76:24 - | -76 | fn $method(&mut self, other: &$u) { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/bit.rs:1032:1 - | -1032 | shr_assign_impl_all! { u8 u16 u32 u64 u128 usize i8 i16 i32 i64 i128 isize } - | ---------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_ref_op_assign` which comes from the expansion of the macro `shr_assign_impl_all` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/control_flow.rs:84:10 - | -84 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/control_flow.rs:84:17 - | -84 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/control_flow.rs:84:30 - | -84 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/control_flow.rs:84:41 - | -84 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/control_flow.rs:84:45 - | -84 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/control_flow.rs:148:21 - | -148 | pub fn is_break(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/control_flow.rs:164:24 - | -164 | pub fn is_continue(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/coroutine.rs:8:10 - | -8 | #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/coroutine.rs:8:23 - | -8 | #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/coroutine.rs:8:34 - | -8 | #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/coroutine.rs:8:46 - | -8 | #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/coroutine.rs:8:50 - | -8 | #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/coroutine.rs:8:55 - | -8 | #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/coroutine.rs:8:62 - | -8 | #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/coroutine.rs:127:25 - | -127 | fn resume(mut self: Pin<&mut Self>, arg: R) -> CoroutineState { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/coroutine.rs:137:25 - | -137 | fn resume(mut self: Pin<&mut Self>, arg: R) -> CoroutineState { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/deref.rs:155:14 - | -155 | fn deref(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/deref.rs:167:14 - | -167 | fn deref(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/deref.rs:273:18 - | -273 | fn deref_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/drop.rs:240:13 - | -240 | fn drop(&mut self); - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/function.rs:79:32 - | -79 | extern "rust-call" fn call(&self, args: Args) -> Self::Output; - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/function.rs:166:36 - | -166 | extern "rust-call" fn call_mut(&mut self, args: Args) -> Self::Output; - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/function.rs:261:36 - | -261 | extern "rust-call" fn call(&self, args: A) -> F::Output { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/function.rs:271:40 - | -271 | extern "rust-call" fn call_mut(&mut self, args: A) -> F::Output { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/function.rs:293:40 - | -293 | extern "rust-call" fn call_mut(&mut self, args: A) -> F::Output { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index.rs:71:14 - | -71 | fn index(&self, index: Idx) -> &Self::Output; - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index.rs:175:18 - | -175 | fn index_mut(&mut self, index: Idx) -> &mut Self::Output; - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:11:10 - | -11 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:11:17 - | -11 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:11:24 - | -11 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:11:35 - | -11 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:36:24 - | -36 | pub const fn start(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:41:22 - | -41 | pub const fn end(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:46:22 - | -46 | pub const fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:54:30 - | -54 | unsafe fn next_unchecked(&mut self) -> usize { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:66:35 - | -66 | unsafe fn next_back_unchecked(&mut self) -> usize { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:81:24 - | -81 | pub fn take_prefix(&mut self, n: usize) -> Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:100:24 - | -100 | pub fn take_suffix(&mut self, n: usize) -> Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:118:13 - | -118 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:128:18 - | -128 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:134:19 - | -134 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:142:18 - | -142 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:152:24 - | -152 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/index_range.rs:160:12 - | -160 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:41:16 - | -41 | #[derive(Copy, Clone, Default, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:41:32 - | -41 | #[derive(Copy, Clone, Default, PartialEq, Eq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:41:43 - | -41 | #[derive(Copy, Clone, Default, PartialEq, Eq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:41:47 - | -41 | #[derive(Copy, Clone, Default, PartialEq, Eq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:47:12 - | -47 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:78:10 - | -78 | #[derive(Clone, Default, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:78:26 - | -78 | #[derive(Clone, Default, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:78:37 - | -78 | #[derive(Clone, Default, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:78:41 - | -78 | #[derive(Clone, Default, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:91:12 - | -91 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:120:24 - | -120 | pub fn contains(&self, item: &U) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:147:21 - | -147 | pub fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:187:10 - | -187 | #[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:187:17 - | -187 | #[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:187:28 - | -187 | #[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:187:32 - | -187 | #[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:197:12 - | -197 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:220:24 - | -220 | pub fn contains(&self, item: &U) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:269:16 - | -269 | #[derive(Copy, Clone, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:269:23 - | -269 | #[derive(Copy, Clone, PartialEq, Eq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:269:34 - | -269 | #[derive(Copy, Clone, PartialEq, Eq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:269:38 - | -269 | #[derive(Copy, Clone, PartialEq, Eq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:279:12 - | -279 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:302:24 - | -302 | pub fn contains(&self, item: &U) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:343:10 - | -343 | #[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:343:17 - | -343 | #[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:343:28 - | -343 | #[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:343:32 - | -343 | #[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:403:24 - | -403 | pub const fn start(&self) -> &Idx { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:428:22 - | -428 | pub const fn end(&self) -> &Idx { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:466:12 - | -466 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:509:24 - | -509 | pub fn contains(&self, item: &U) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:545:21 - | -545 | pub fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:590:16 - | -590 | #[derive(Copy, Clone, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:590:23 - | -590 | #[derive(Copy, Clone, PartialEq, Eq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:590:34 - | -590 | #[derive(Copy, Clone, PartialEq, Eq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:590:38 - | -590 | #[derive(Copy, Clone, PartialEq, Eq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:600:12 - | -600 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:623:24 - | -623 | pub fn contains(&self, item: &U) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:671:10 - | -671 | #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:671:23 - | -671 | #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:671:30 - | -671 | #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:671:36 - | -671 | #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:671:47 - | -671 | #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:688:19 - | -688 | pub fn as_ref(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:699:19 - | -699 | pub fn as_mut(&mut self) -> Bound<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:838:20 - | -838 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:841:18 - | -841 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:848:20 - | -848 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:851:18 - | -851 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:858:20 - | -858 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:861:18 - | -861 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:868:20 - | -868 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:871:18 - | -871 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:878:20 - | -878 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:881:18 - | -881 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:894:20 - | -894 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:897:18 - | -897 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:904:20 - | -904 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:912:18 - | -912 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:923:20 - | -923 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:927:18 - | -927 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:934:20 - | -934 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:937:18 - | -937 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:944:20 - | -944 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:947:18 - | -947 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:954:20 - | -954 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:957:18 - | -957 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:964:20 - | -964 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:967:18 - | -967 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:974:20 - | -974 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/range.rs:977:18 - | -977 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ops/try_trait.rs:427:10 - | -427 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:139:16 - | -139 | fn type_id(&self) -> TypeId { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:150:12 - | -150 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:160:12 - | -160 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:167:12 - | -167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:193:23 - | -193 | pub fn is(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:225:33 - | -225 | pub fn downcast_ref(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:261:33 - | -261 | pub fn downcast_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:294:50 - | -294 | pub unsafe fn downcast_ref_unchecked(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:324:50 - | -324 | pub unsafe fn downcast_mut_unchecked(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:352:23 - | -352 | pub fn is(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:376:33 - | -376 | pub fn downcast_ref(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:404:33 - | -404 | pub fn downcast_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:429:50 - | -429 | pub unsafe fn downcast_ref_unchecked(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:457:50 - | -457 | pub unsafe fn downcast_mut_unchecked(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:484:23 - | -484 | pub fn is(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:508:33 - | -508 | pub fn downcast_ref(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:536:33 - | -536 | pub fn downcast_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:557:50 - | -557 | pub unsafe fn downcast_ref_unchecked(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:581:50 - | -581 | pub unsafe fn downcast_mut_unchecked(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:603:10 - | -603 | #[derive(Clone, Copy, Eq, PartialOrd, Ord)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:603:23 - | -603 | #[derive(Clone, Copy, Eq, PartialOrd, Ord)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:603:27 - | -603 | #[derive(Clone, Copy, Eq, PartialOrd, Ord)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:603:39 - | -603 | #[derive(Clone, Copy, Eq, PartialOrd, Ord)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:614:11 - | -614 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:654:30 - | -654 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/any.rs:673:12 - | -673 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:157:10 - | -157 | #[derive(Debug, Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:157:23 - | -157 | #[derive(Debug, Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:163:12 - | -163 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:172:20 - | -172 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:187:15 - | -187 | fn as_ref(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:195:15 - | -195 | fn as_mut(&mut self) -> &mut [T] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:202:15 - | -202 | fn borrow(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:209:19 - | -209 | fn borrow_mut(&mut self) -> &mut [T] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:333:30 - | -333 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:340:12 - | -340 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:373:14 - | -373 | fn index(&self, index: I) -> &Self::Output { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:384:18 - | -384 | fn index_mut(&mut self, index: I) -> &mut Self::Output { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:393:20 - | -393 | fn partial_cmp(&self, other: &[T; N]) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:397:11 - | -397 | fn lt(&self, other: &[T; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:401:11 - | -401 | fn le(&self, other: &[T; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:405:11 - | -405 | fn ge(&self, other: &[T; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:409:11 - | -409 | fn gt(&self, other: &[T; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:418:12 - | -418 | fn cmp(&self, other: &[T; N]) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:429:14 - | -429 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:434:19 - | -434 | fn clone_from(&mut self, other: &Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:572:27 - | -572 | pub const fn as_slice(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:579:25 - | -579 | pub fn as_mut_slice(&mut self) -> &mut [T] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:608:21 - | -608 | pub fn each_ref(&self) -> [&T; N] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:627:21 - | -627 | pub fn each_mut(&mut self) -> [&mut T; N] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:672:44 - | -672 | pub fn split_array_ref(&self) -> (&[T; M], &[T]) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:705:44 - | -705 | pub fn split_array_mut(&mut self) -> (&mut [T; M], &mut [T]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:750:45 - | -750 | pub fn rsplit_array_ref(&self) -> (&[T], &[T; M]) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:783:45 - | -783 | pub fn rsplit_array_mut(&mut self) -> (&mut [T], &mut [T; M]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:880:34 - | -880 | pub unsafe fn push_unchecked(&mut self, item: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/mod.rs:893:13 - | -893 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/ascii.rs:23:27 - | -23 | pub const fn as_ascii(&self) -> Option<&[ascii::Char; N]> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/ascii.rs:41:44 - | -41 | pub const unsafe fn as_ascii_unchecked(&self) -> &[ascii::Char; N] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/drain.rs:35:13 - | -35 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/drain.rs:45:13 - | -45 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/drain.rs:52:18 - | -52 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/drain.rs:60:12 - | -60 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/drain.rs:69:30 - | -69 | unsafe fn next_unchecked(&mut self) -> T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:9:11 - | -9 | fn eq(&self, other: &[U; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:13:11 - | -13 | fn ne(&self, other: &[U; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:24:11 - | -24 | fn eq(&self, other: &[U]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:32:11 - | -32 | fn ne(&self, other: &[U]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:47:11 - | -47 | fn eq(&self, other: &[U; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:55:11 - | -55 | fn ne(&self, other: &[U; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:70:11 - | -70 | fn eq(&self, other: &&[U]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:74:11 - | -74 | fn ne(&self, other: &&[U]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:85:11 - | -85 | fn eq(&self, other: &[U; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:89:11 - | -89 | fn ne(&self, other: &[U; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:100:11 - | -100 | fn eq(&self, other: &&mut [U]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:104:11 - | -104 | fn ne(&self, other: &&mut [U]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:115:11 - | -115 | fn eq(&self, other: &[U; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/equality.rs:119:11 - | -119 | fn ne(&self, other: &[U; N]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:215:21 - | -215 | pub fn as_slice(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:225:25 - | -225 | pub fn as_mut_slice(&mut self) -> &mut [T] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:237:13 - | -237 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:254:18 - | -254 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:281:19 - | -281 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:297:40 - | -297 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:305:18 - | -305 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:336:24 - | -336 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:354:13 - | -354 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:364:12 - | -364 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:367:17 - | -367 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:403:14 - | -403 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/array/iter.rs:424:12 - | -424 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:26:10 - | -26 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:108:26 - | -108 | pub(crate) fn as_str(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:118:13 - | -118 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:123:18 - | -123 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:139:19 - | -139 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:147:18 - | -147 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:152:24 - | -152 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:160:12 - | -160 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:170:12 - | -170 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii.rs:177:12 - | -177 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:61:16 - | -61 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:61:23 - | -61 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:61:27 - | -61 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:61:38 - | -61 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:61:43 - | -61 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:61:55 - | -61 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:546:25 - | -546 | pub const fn as_str(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:571:25 - | -571 | pub const fn as_str(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:582:27 - | -582 | pub const fn as_bytes(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:589:12 - | -589 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ascii/ascii_char.rs:596:12 - | -596 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/asserting.rs:30:20 - | -30 | fn try_capture(&self, _: &mut Capture) {} - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/asserting.rs:34:12 - | -34 | fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), core::fmt::Error> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/asserting.rs:57:20 - | -57 | fn try_capture(&self, to: &mut Capture) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/asserting.rs:66:12 - | -66 | fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), core::fmt::Error> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/async_iter/async_iter.rs:89:28 - | -89 | fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/async_iter/async_iter.rs:93:18 - | -93 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/async_iter/async_iter.rs:106:24 - | -106 | fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/async_iter/async_iter.rs:110:18 - | -110 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/async_iter/from_iter.rs:12:10 - | -12 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/async_iter/from_iter.rs:12:17 - | -12 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/async_iter/from_iter.rs:30:28 - | -30 | fn poll_next(mut self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll> { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/async_iter/from_iter.rs:34:18 - | -34 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:328:14 - | -328 | fn clone(&self) -> Cell { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:345:11 - | -345 | fn eq(&self, other: &Cell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:356:20 - | -356 | fn partial_cmp(&self, other: &Cell) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:361:11 - | -361 | fn lt(&self, other: &Cell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:366:11 - | -366 | fn le(&self, other: &Cell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:371:11 - | -371 | fn gt(&self, other: &Cell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:376:11 - | -376 | fn ge(&self, other: &Cell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:384:12 - | -384 | fn cmp(&self, other: &Cell) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:427:16 - | -427 | pub fn set(&self, val: T) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:455:17 - | -455 | pub fn swap(&self, other: &Self) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:498:20 - | -498 | pub fn replace(&self, val: T) -> T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:537:16 - | -537 | pub fn get(&self) -> T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:560:22 - | -560 | pub fn update(&self, f: F) -> T - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:587:25 - | -587 | pub const fn as_ptr(&self) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:615:20 - | -615 | pub fn get_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:655:17 - | -655 | pub fn take(&self) -> T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:688:30 - | -688 | pub fn as_slice_of_cells(&self) -> &[Cell] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:708:30 - | -708 | pub fn as_array_of_cells(&self) -> &[Cell; N] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:740:12 - | -740 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:752:12 - | -752 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:767:12 - | -767 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:779:12 - | -779 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:890:20 - | -890 | pub fn replace(&self, t: T) -> T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:913:49 - | -913 | pub fn replace_with T>(&self, f: F) -> T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:941:17 - | -941 | pub fn swap(&self, other: &Self) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:981:19 - | -981 | pub fn borrow(&self) -> Ref<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1016:23 - | -1016 | pub fn try_borrow(&self) -> Result, BorrowError> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1077:23 - | -1077 | pub fn borrow_mut(&self) -> RefMut<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1109:27 - | -1109 | pub fn try_borrow_mut(&self) -> Result, BorrowMutError> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1144:19 - | -1144 | pub fn as_ptr(&self) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1177:20 - | -1177 | pub fn get_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1203:22 - | -1203 | pub fn undo_leak(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1237:40 - | -1237 | pub unsafe fn try_borrow_unguarded(&self) -> Result<&T, BorrowError> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1275:17 - | -1275 | pub fn take(&self) -> T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1293:14 - | -1293 | fn clone(&self) -> RefCell { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1302:19 - | -1302 | fn clone_from(&mut self, source: &Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1322:11 - | -1322 | fn eq(&self, other: &RefCell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1336:20 - | -1336 | fn partial_cmp(&self, other: &RefCell) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1344:11 - | -1344 | fn lt(&self, other: &RefCell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1352:11 - | -1352 | fn le(&self, other: &RefCell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1360:11 - | -1360 | fn gt(&self, other: &RefCell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1368:11 - | -1368 | fn ge(&self, other: &RefCell) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1379:12 - | -1379 | fn cmp(&self, other: &RefCell) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1426:13 - | -1426 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1435:14 - | -1435 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1468:14 - | -1468 | fn deref(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1627:12 - | -1627 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1795:13 - | -1795 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1824:14 - | -1824 | fn clone(&self) -> BorrowRefMut<'b> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1854:14 - | -1854 | fn deref(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1863:18 - | -1863 | fn deref_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:1877:12 - | -1877 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:2149:22 - | -2149 | pub const fn get(&self) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:2174:26 - | -2174 | pub const fn get_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:2335:22 - | -2335 | pub const fn get(&self) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell.rs:2344:26 - | -2344 | pub const fn get_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/lazy.rs:156:12 - | -156 | fn get(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/lazy.rs:173:14 - | -173 | fn deref(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/lazy.rs:189:12 - | -189 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:52:16 - | -52 | pub fn get(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:62:20 - | -62 | pub fn get_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:88:16 - | -88 | pub fn set(&self, value: T) -> Result<(), T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:120:23 - | -120 | pub fn try_insert(&self, value: T) -> Result<&T, (&T, T)> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:157:27 - | -157 | pub fn get_or_init(&self, f: F) -> &T - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:193:31 - | -193 | pub fn get_mut_or_init(&mut self, f: F) -> &mut T - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:231:34 - | -231 | pub fn get_or_try_init(&self, f: F) -> Result<&T, E> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:269:38 - | -269 | pub fn get_mut_or_try_init(&mut self, f: F) -> Result<&mut T, E> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:282:23 - | -282 | fn try_init(&self, f: F) -> Result<&T, E> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:340:17 - | -340 | pub fn take(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:355:12 - | -355 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:368:14 - | -368 | fn clone(&self) -> OnceCell { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/cell/once.rs:383:11 - | -383 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:96:29 - | -96 | pub const MAX: char = char::MAX; - | ^^^ multiple `MAX` found - | -note: candidate #1 is defined in an impl for the type `char` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:77:5 - | -77 | pub const MAX: char = '\u{10ffff}'; - | ^^^^^^^^^^^^^^^^^^^ - = note: candidate #2 is defined in an impl for the type `char` - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:101:47 - | -101 | pub const REPLACEMENT_CHARACTER: char = char::REPLACEMENT_CHARACTER; - | ^^^^^^^^^^^^^^^^^^^^^ multiple `REPLACEMENT_CHARACTER` found - | -note: candidate #1 is defined in an impl for the type `char` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:85:5 - | -85 | pub const REPLACEMENT_CHARACTER: char = '\u{FFFD}'; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - = note: candidate #2 is defined in an impl for the type `char` - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:106:49 - | -106 | pub const UNICODE_VERSION: (u8, u8, u8) = char::UNICODE_VERSION; - | ^^^^^^^^^^^^^^^ multiple `UNICODE_VERSION` found - | -note: candidate #1 is defined in an impl for the type `char` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:98:5 - | -98 | pub const UNICODE_VERSION: (u8, u8, u8) = crate::unicode::UNICODE_VERSION; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - = note: candidate #2 is defined in an impl for the type `char` - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:152:10 - | -152 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:152:17 - | -152 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:168:13 - | -168 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:173:18 - | -173 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:189:19 - | -189 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:197:12 - | -197 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:207:12 - | -207 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:218:10 - | -218 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:218:17 - | -218 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:244:13 - | -244 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:249:18 - | -249 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:265:19 - | -265 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:273:12 - | -273 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:283:12 - | -283 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:295:10 - | -295 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:295:17 - | -295 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:298:10 - | -298 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:298:17 - | -298 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:325:14 - | -325 | fn clear(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:335:13 - | -335 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:346:18 - | -346 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:359:12 - | -359 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:372:12 - | -372 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:384:18 - | -384 | #[derive(Debug, Clone)] - | ^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:384:25 - | -384 | #[derive(Debug, Clone)] - | ^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:390:21 - | -390 | fn next(&mut self) -> Option { - | ^^^^^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:394:26 - | -394 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:413:27 - | -413 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:417:48 - | -417 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:425:26 - | -425 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:436:32 - | -436 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:446:20 - | -446 | fn len(&self) -> usize { - | ^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:450:25 - | -450 | fn is_empty(&self) -> bool { - | ^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:473:20 - | -473 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -480 | / casemappingiter_impls! { -481 | | /// Returns an iterator that yields the lowercase equivalent of a `char`. -482 | | /// -483 | | /// This `struct` is created by the [`to_lowercase`] method on [`char`]. See -... | -487 | | ToLowercase -488 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:384:18 - | -384 | #[derive(Debug, Clone)] - | ^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:384:25 - | -384 | #[derive(Debug, Clone)] - | ^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:390:21 - | -390 | fn next(&mut self) -> Option { - | ^^^^^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:394:26 - | -394 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:413:27 - | -413 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:417:48 - | -417 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:425:26 - | -425 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:436:32 - | -436 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:446:20 - | -446 | fn len(&self) -> usize { - | ^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:450:25 - | -450 | fn is_empty(&self) -> bool { - | ^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:473:20 - | -473 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -490 | / casemappingiter_impls! { -491 | | /// Returns an iterator that yields the uppercase equivalent of a `char`. -492 | | /// -493 | | /// This `struct` is created by the [`to_uppercase`] method on [`char`]. See -... | -497 | | ToUppercase -498 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `casemappingiter_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:500:10 - | -500 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:500:17 - | -500 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:523:13 - | -523 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:527:18 - | -527 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:546:19 - | -546 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:550:40 - | -550 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:557:18 - | -557 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:568:24 - | -568 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:574:12 - | -574 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:578:17 - | -578 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:598:12 - | -598 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:608:10 - | -608 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:608:23 - | -608 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:608:30 - | -608 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:608:41 - | -608 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/mod.rs:613:12 - | -613 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:192:10 - | -192 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:192:17 - | -192 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:192:24 - | -192 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:192:35 - | -192 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:197:16 - | -197 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:197:23 - | -197 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:197:30 - | -197 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:197:41 - | -197 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:206:20 - | -206 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:216:12 - | -216 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:275:16 - | -275 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:275:23 - | -275 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:275:30 - | -275 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:275:41 - | -275 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/convert.rs:280:12 - | -280 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:14:10 - | -14 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:14:17 - | -14 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:27:10 - | -27 | #[derive(Debug, Clone, Eq, PartialEq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:27:17 - | -27 | #[derive(Debug, Clone, Eq, PartialEq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:27:24 - | -27 | #[derive(Debug, Clone, Eq, PartialEq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:27:28 - | -27 | #[derive(Debug, Clone, Eq, PartialEq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:43:13 - | -43 | fn next(&mut self) -> Option> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:76:18 - | -76 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:116:31 - | -116 | pub fn unpaired_surrogate(&self) -> u16 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:123:12 - | -123 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/decode.rs:131:20 - | -131 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1152:27 - | -1152 | pub const fn is_ascii(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1165:27 - | -1165 | pub const fn as_ascii(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1200:37 - | -1200 | pub const fn to_ascii_uppercase(&self) -> char { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1234:37 - | -1234 | pub const fn to_ascii_lowercase(&self) -> char { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1262:39 - | -1262 | pub const fn eq_ignore_ascii_case(&self, other: &char) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1287:33 - | -1287 | pub fn make_ascii_uppercase(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1312:33 - | -1312 | pub fn make_ascii_lowercase(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1348:38 - | -1348 | pub const fn is_ascii_alphabetic(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1382:37 - | -1382 | pub const fn is_ascii_uppercase(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1416:37 - | -1416 | pub const fn is_ascii_lowercase(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1453:40 - | -1453 | pub const fn is_ascii_alphanumeric(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1487:33 - | -1487 | pub const fn is_ascii_digit(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1519:36 - | -1519 | pub const fn is_ascii_octdigit(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1556:36 - | -1556 | pub const fn is_ascii_hexdigit(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1594:39 - | -1594 | pub const fn is_ascii_punctuation(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1631:35 - | -1631 | pub const fn is_ascii_graphic(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1682:38 - | -1682 | pub const fn is_ascii_whitespace(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/char/methods.rs:1718:35 - | -1718 | pub const fn is_ascii_control(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/mod.rs:212:12 - | -212 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:92:10 - | -92 | #[derive(PartialEq, Eq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:92:21 - | -92 | #[derive(PartialEq, Eq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:92:25 - | -92 | #[derive(PartialEq, Eq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:126:10 - | -126 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:126:17 - | -126 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:126:28 - | -126 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:126:32 - | -126 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:132:10 - | -132 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:132:17 - | -132 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:132:28 - | -132 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:132:32 - | -132 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:153:20 - | -153 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:170:10 - | -170 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:170:17 - | -170 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:170:28 - | -170 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:170:32 - | -170 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:176:12 - | -176 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:183:12 - | -183 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:201:12 - | -201 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:503:25 - | -503 | pub const fn as_ptr(&self) -> *const c_char { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:510:30 - | -510 | const fn as_non_null_ptr(&self) -> NonNull { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:539:30 - | -539 | pub const fn count_bytes(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:565:27 - | -565 | pub const fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:594:27 - | -594 | pub const fn to_bytes(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:623:36 - | -623 | pub const fn to_bytes_with_nul(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:645:18 - | -645 | pub fn bytes(&self) -> Bytes<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:667:25 - | -667 | pub const fn to_str(&self) -> Result<&str, str::Utf8Error> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:682:20 - | -682 | fn partial_cmp(&self, other: &CStr) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:689:12 - | -689 | fn cmp(&self, other: &CStr) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:699:14 - | -699 | fn index(&self, index: ops::RangeFrom) -> &CStr { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:720:15 - | -720 | fn as_ref(&self) -> &CStr { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:769:10 - | -769 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:769:17 - | -769 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:789:17 - | -789 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:802:13 - | -802 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/c_str.rs:821:18 - | -821 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/va_list.rs:106:10 - | -106 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/va_list.rs:118:10 - | -118 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/va_list.rs:186:27 - | -186 | pub fn as_va_list<'a>(&'a mut self) -> VaList<'a, 'f> { - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/va_list.rs:195:14 - | -195 | fn deref(&self) -> &VaListImpl<'f> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/va_list.rs:202:18 - | -202 | fn deref_mut(&mut self) -> &mut VaListImpl<'f> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/va_list.rs:239:51 - | -239 | pub unsafe fn arg(&mut self) -> T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/va_list.rs:245:35 - | -245 | pub unsafe fn with_copy(&self, f: F) -> R - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/va_list.rs:261:14 - | -261 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/ffi/va_list.rs:272:13 - | -272 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:38:12 - | -38 | fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:75:21 - | -75 | pub fn capacity(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:81:16 - | -81 | pub fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:87:21 - | -87 | pub fn init_len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:93:19 - | -93 | pub fn filled(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:103:23 - | -103 | pub fn filled_mut(&mut self) -> &mut [u8] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:113:28 - | -113 | pub fn unfilled<'this>(&'this mut self) -> BorrowedCursor<'this> { - | ^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:128:18 - | -128 | pub fn clear(&mut self) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:142:28 - | -142 | pub unsafe fn set_init(&mut self, n: usize) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:164:10 - | -164 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:182:28 - | -182 | pub fn reborrow<'this>(&'this mut self) -> BorrowedCursor<'this> { - | ^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:197:21 - | -197 | pub fn capacity(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:206:20 - | -206 | pub fn written(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:212:21 - | -212 | pub fn init_ref(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:222:21 - | -222 | pub fn init_mut(&mut self) -> &mut [u8] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:234:23 - | -234 | pub fn uninit_mut(&mut self) -> &mut [MaybeUninit] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:245:26 - | -245 | pub unsafe fn as_mut(&mut self) -> &mut [MaybeUninit] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:263:20 - | -263 | pub fn advance(&mut self, n: usize) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:282:37 - | -282 | pub unsafe fn advance_unchecked(&mut self, n: usize) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:290:24 - | -290 | pub fn ensure_init(&mut self) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:311:28 - | -311 | pub unsafe fn set_init(&mut self, n: usize) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/io/borrowed_buf.rs:322:19 - | -322 | pub fn append(&mut self, buf: &[u8]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/mod.rs:173:13 - | -173 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/mod.rs:177:18 - | -177 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/mod.rs:186:26 - | -186 | fn try_fold(&mut self, init: B, mut f: F) -> T - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/mod.rs:213:24 - | -213 | unsafe fn as_inner(&mut self) -> &mut Self::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:16:10 - | -16 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:16:17 - | -16 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:65:13 - | -65 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:70:18 - | -70 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:81:26 - | -81 | fn try_fold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:117:18 - | -117 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:121:27 - | -121 | fn try_rfold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:154:28 - | -154 | fn next_back_remainder(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:188:12 - | -188 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:193:17 - | -193 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/array_chunks.rs:261:24 - | -261 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:9:10 - | -9 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:20:13 - | -20 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:25:18 - | -25 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:30:19 - | -30 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:35:12 - | -35 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:49:26 - | -49 | fn try_fold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:61:18 - | -61 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:66:24 - | -66 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:71:17 - | -71 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/by_ref_sized.rs:85:27 - | -85 | fn try_rfold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:20:10 - | -20 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:20:17 - | -20 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:83:13 - | -83 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:101:28 - | -101 | fn try_fold(&mut self, mut acc: Acc, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:132:19 - | -132 | fn advance_by(&mut self, mut n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:150:12 - | -150 | fn nth(&mut self, mut n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:167:16 - | -167 | fn find

(&mut self, mut predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:184:18 - | -184 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:213:18 - | -213 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:218:24 - | -218 | fn advance_back_by(&mut self, mut n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:236:17 - | -236 | fn nth_back(&mut self, mut n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:253:17 - | -253 | fn rfind

(&mut self, mut predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/chain.rs:261:29 - | -261 | fn try_rfold(&mut self, mut acc: Acc, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:17:10 - | -17 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:17:17 - | -17 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:40:13 - | -40 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:44:18 - | -44 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:48:26 - | -48 | fn try_fold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:64:40 - | -64 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> T - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:80:18 - | -80 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:84:27 - | -84 | fn try_rfold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:107:12 - | -107 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:111:17 - | -111 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:150:30 - | -150 | unsafe fn next_unchecked(&mut self) -> T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cloned.rs:180:24 - | -180 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:18:10 - | -18 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:18:17 - | -18 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:45:13 - | -45 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:50:9 - | -50 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:58:18 - | -58 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:62:26 - | -62 | fn try_fold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:78:12 - | -78 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:91:19 - | -91 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:95:40 - | -95 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> T - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:111:18 - | -111 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:115:27 - | -115 | fn try_rfold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:132:24 - | -132 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:143:12 - | -143 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:147:17 - | -147 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:193:32 - | -193 | default fn spec_next_chunk(&mut self) -> Result<[T; N], array::IntoIter> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:202:24 - | -202 | fn spec_next_chunk(&mut self) -> Result<[T; N], array::IntoIter> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/copied.rs:265:24 - | -265 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cycle.rs:12:10 - | -12 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cycle.rs:12:17 - | -12 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cycle.rs:34:13 - | -34 | fn next(&mut self) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cycle.rs:45:18 - | -45 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cycle.rs:55:28 - | -55 | fn try_fold(&mut self, mut acc: Acc, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/cycle.rs:86:19 - | -86 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:14:10 - | -14 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:14:17 - | -14 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:46:13 - | -46 | fn next(&mut self) -> Option<(usize, ::Item)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:54:18 - | -54 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:60:12 - | -60 | fn nth(&mut self, n: usize) -> Option<(usize, I::Item)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:73:31 - | -73 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:118:19 - | -118 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:130:40 - | -130 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> ::Item - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:147:18 - | -147 | fn next_back(&mut self) -> Option<(usize, ::Item)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:156:17 - | -156 | fn nth_back(&mut self, n: usize) -> Option<(usize, ::Item)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:165:32 - | -165 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:209:24 - | -209 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:221:12 - | -221 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:225:17 - | -225 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/enumerate.rs:260:24 - | -260 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:20:10 - | -20 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:39:9 - | -39 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:70:12 - | -70 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:97:13 - | -97 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:103:9 - | -103 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:118:18 - | -118 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:145:31 - | -145 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:169:18 - | -169 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:174:32 - | -174 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter.rs:206:24 - | -206 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:18:10 - | -18 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:31:12 - | -31 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:64:13 - | -64 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:70:9 - | -70 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:81:21 - | -81 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:129:18 - | -129 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:135:31 - | -135 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:159:18 - | -159 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:174:32 - | -174 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/filter_map.rs:206:24 - | -206 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:40:14 - | -40 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:50:12 - | -50 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:63:13 - | -63 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:68:18 - | -68 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:73:31 - | -73 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:91:19 - | -91 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:113:18 - | -113 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:118:32 - | -118 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:136:24 - | -136 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:184:24 - | -184 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:270:12 - | -270 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:281:14 - | -281 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:295:13 - | -295 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:300:18 - | -300 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:305:31 - | -305 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:323:19 - | -323 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:345:18 - | -345 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:350:32 - | -350 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:368:24 - | -368 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:413:24 - | -413 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:439:10 - | -439 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:439:17 - | -439 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:495:36 - | -495 | fn iter_try_fold(&mut self, mut acc: Acc, mut fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:564:37 - | -564 | fn iter_try_rfold(&mut self, mut acc: Acc, mut fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:603:21 - | -603 | default fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:616:26 - | -616 | default fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:638:39 - | -638 | default fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:671:27 - | -671 | default fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:716:26 - | -716 | default fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:729:40 - | -729 | default fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:762:32 - | -762 | default fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:936:13 - | -936 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:946:18 - | -946 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:956:31 - | -956 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:974:19 - | -974 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:1002:18 - | -1002 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:1012:32 - | -1012 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/flatten.rs:1030:24 - | -1030 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:14:10 - | -14 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:14:17 - | -14 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:49:13 - | -49 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:54:12 - | -54 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:75:18 - | -75 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:83:31 - | -83 | fn try_fold(&mut self, acc: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:104:16 - | -104 | fn find

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:112:40 - | -112 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:132:18 - | -132 | fn next_back(&mut self) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:137:17 - | -137 | fn nth_back(&mut self, n: usize) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:142:32 - | -142 | fn try_rfold(&mut self, acc: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:163:17 - | -163 | fn rfind

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:176:12 - | -176 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:183:17 - | -183 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:278:21 - | -278 | default fn next(&mut self) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:283:20 - | -283 | default fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:288:39 - | -288 | default fn try_fold(&mut self, mut acc: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:302:24 - | -302 | default fn find

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:310:26 - | -310 | default fn next_back(&mut self) -> Option<::Item> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:318:25 - | -318 | default fn nth_back(&mut self, n: usize) -> Option<::Item> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:326:40 - | -326 | default fn try_rfold(&mut self, mut acc: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:341:25 - | -341 | default fn rfind

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:358:13 - | -358 | fn next(&mut self) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:363:12 - | -363 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:368:31 - | -368 | fn try_fold(&mut self, mut acc: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:381:16 - | -381 | fn find

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:389:18 - | -389 | fn next_back(&mut self) -> Option<::Item> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:397:17 - | -397 | fn nth_back(&mut self, n: usize) -> Option<::Item> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:405:32 - | -405 | fn try_rfold(&mut self, mut acc: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:419:17 - | -419 | fn rfind

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/fuse.rs:437:24 - | -437 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:17:10 - | -17 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:30:12 - | -30 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:40:19 - | -40 | fn do_inspect(&mut self, elt: Option) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:77:13 - | -77 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:83:18 - | -83 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:88:31 - | -88 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:112:18 - | -112 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:118:32 - | -118 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:141:12 - | -141 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:145:17 - | -145 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/inspect.rs:164:24 - | -164 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/intersperse.rs:9:10 - | -9 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/intersperse.rs:9:17 - | -9 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/intersperse.rs:46:13 - | -46 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/intersperse.rs:65:18 - | -65 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/intersperse.rs:116:12 - | -116 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/intersperse.rs:133:14 - | -133 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/intersperse.rs:162:13 - | -162 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/intersperse.rs:181:18 - | -181 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:60:10 - | -60 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:79:12 - | -79 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:106:13 - | -106 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:111:18 - | -111 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:115:28 - | -115 | fn try_fold(&mut self, init: Acc, g: G) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:132:40 - | -132 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> B - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:148:18 - | -148 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:152:29 - | -152 | fn try_rfold(&mut self, init: Acc, g: G) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:174:12 - | -174 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:178:17 - | -178 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:202:30 - | -202 | unsafe fn next_unchecked(&mut self) -> B { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map.rs:231:24 - | -231 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_while.rs:16:10 - | -16 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_while.rs:30:12 - | -30 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_while.rs:43:13 - | -43 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_while.rs:49:18 - | -49 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_while.rs:55:31 - | -55 | fn try_fold(&mut self, init: Acc, mut fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_while.rs:80:24 - | -80 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:70:20 - | -70 | fn next_window(&mut self) -> Option<&[I::Item; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:91:18 - | -91 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:116:19 - | -116 | fn buffer_ptr(&self) -> *const MaybeUninit { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:121:23 - | -121 | fn buffer_mut_ptr(&mut self) -> *mut MaybeUninit { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:126:21 - | -126 | fn as_array_ref(&self) -> &[T; N] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:134:28 - | -134 | fn as_uninit_array_mut(&mut self) -> &mut MaybeUninit<[T; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:145:13 - | -145 | fn push(&mut self, next: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:203:14 - | -203 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:218:14 - | -218 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:224:13 - | -224 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:245:13 - | -245 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:251:18 - | -251 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:276:12 - | -276 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/map_windows.rs:288:14 - | -288 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:13:10 - | -13 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:13:17 - | -13 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:38:13 - | -38 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:56:12 - | -56 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:76:18 - | -76 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:92:26 - | -92 | fn try_fold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:126:18 - | -126 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:135:27 - | -135 | fn try_rfold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:216:17 - | -216 | pub fn peek(&mut self) -> Option<&I::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:256:21 - | -256 | pub fn peek_mut(&mut self) -> Option<&mut I::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:287:20 - | -287 | pub fn next_if(&mut self, func: impl FnOnce(&I::Item) -> bool) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:313:26 - | -313 | pub fn next_if_eq(&mut self, expected: &T) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/peekable.rs:333:24 - | -333 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:12:10 - | -12 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:12:17 - | -12 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:33:13 - | -33 | fn next(&mut self) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:37:18 - | -37 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:42:19 - | -42 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:47:12 - | -47 | fn nth(&mut self, n: usize) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:51:26 - | -51 | fn try_fold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:68:16 - | -68 | fn find

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:82:18 - | -82 | fn next_back(&mut self) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:87:24 - | -87 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:92:17 - | -92 | fn nth_back(&mut self, n: usize) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:96:27 - | -96 | fn try_rfold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:112:17 - | -112 | fn rfind

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:125:12 - | -125 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/rev.rs:129:17 - | -129 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/scan.rs:16:10 - | -16 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/scan.rs:31:12 - | -31 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/scan.rs:45:13 - | -45 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/scan.rs:51:18 - | -51 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/scan.rs:57:31 - | -57 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/scan.rs:90:24 - | -90 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:18:10 - | -18 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:18:17 - | -18 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:40:13 - | -40 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:49:12 - | -49 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:91:18 - | -91 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:104:31 - | -104 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:137:19 - | -137 | fn advance_by(&mut self, mut n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:161:40 - | -161 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:195:18 - | -195 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:200:17 - | -200 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:213:32 - | -213 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:237:24 - | -237 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip.rs:259:24 - | -259 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip_while.rs:16:10 - | -16 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip_while.rs:31:12 - | -31 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip_while.rs:44:13 - | -44 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip_while.rs:65:18 - | -65 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip_while.rs:71:31 - | -71 | fn try_fold(&mut self, mut init: Acc, mut fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/skip_while.rs:120:24 - | -120 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:424:38 - | -424 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `usize` -note: candidate #2 is defined in an impl for the type `usize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:424:52 - | -424 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u8` -note: candidate #2 is defined in an impl for the type `u8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:476:5 - | -476 | / uint_impl! { -477 | | Self = u8, -478 | | ActualT = u8, -479 | | SignedT = i8, -... | -493 | | bound_condition = "", -494 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:424:52 - | -424 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:424:52 - | -424 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:424:52 - | -424 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u64` -note: candidate #2 is defined in an impl for the type `u64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1164:5 - | -1164 | / uint_impl! { -1165 | | Self = u64, -1166 | | ActualT = u64, -1167 | | SignedT = i64, -... | -1181 | | bound_condition = "", -1182 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:424:52 - | -424 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `usize` -note: candidate #2 is defined in an impl for the type `usize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:511:38 - | -511 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -571 | spec_int_ranges_r!(u8 u16 u32 usize); - | ------------------------------------ in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `usize` -note: candidate #2 is defined in an impl for the type `usize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges_r` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:511:52 - | -511 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -571 | spec_int_ranges_r!(u8 u16 u32 usize); - | ------------------------------------ in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u8` -note: candidate #2 is defined in an impl for the type `u8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:476:5 - | -476 | / uint_impl! { -477 | | Self = u8, -478 | | ActualT = u8, -479 | | SignedT = i8, -... | -493 | | bound_condition = "", -494 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges_r` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:511:52 - | -511 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -571 | spec_int_ranges_r!(u8 u16 u32 usize); - | ------------------------------------ in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u16` -note: candidate #2 is defined in an impl for the type `u16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1091:5 - | -1091 | / uint_impl! { -1092 | | Self = u16, -1093 | | ActualT = u16, -1094 | | SignedT = i16, -... | -1108 | | bound_condition = "", -1109 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges_r` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:511:52 - | -511 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -571 | spec_int_ranges_r!(u8 u16 u32 usize); - | ------------------------------------ in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `u32` -note: candidate #2 is defined in an impl for the type `u32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1140:5 - | -1140 | / uint_impl! { -1141 | | Self = u32, -1142 | | ActualT = u32, -1143 | | SignedT = i32, -... | -1157 | | bound_condition = "", -1158 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges_r` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:511:52 - | -511 | const _: () = assert!(usize::BITS >= <$t>::BITS); - | ^^^^ multiple `BITS` found -... -571 | spec_int_ranges_r!(u8 u16 u32 usize); - | ------------------------------------ in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `usize` -note: candidate #2 is defined in an impl for the type `usize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/uint_macros.rs:59:9 - | -59 | pub const BITS: u32 = Self::MAX.count_ones(); - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:1264:5 - | -1264 | / uint_impl! { -1265 | | Self = usize, -1266 | | ActualT = u64, -1267 | | SignedT = isize, -... | -1281 | | bound_condition = " on 64-bit targets", -1282 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `spec_int_ranges_r` which comes from the expansion of the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:15:10 - | -15 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:15:17 - | -15 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:43:22 - | -43 | fn original_step(&self) -> NonZero { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:58:13 - | -58 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:63:18 - | -63 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:68:12 - | -68 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:72:28 - | -72 | fn try_fold(&mut self, acc: Acc, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:95:24 - | -95 | fn next_back_index(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:107:18 - | -107 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:112:17 - | -112 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:116:29 - | -116 | fn try_rfold(&mut self, init: Acc, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:223:26 - | -223 | default fn spec_next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:230:31 - | -230 | default fn spec_size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:253:25 - | -253 | default fn spec_nth(&mut self, mut n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:296:41 - | -296 | default fn spec_try_fold(&mut self, mut acc: Acc, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:346:31 - | -346 | default fn spec_next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:351:30 - | -351 | default fn spec_nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:360:42 - | -360 | default fn spec_try_rfold(&mut self, init: Acc, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:441:26 - | -441 | fn spec_next(&mut self) -> Option<$t> { - | ^^^^^^^^^ -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `spec_int_ranges` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:459:31 - | -459 | fn spec_size_hint(&self) -> (usize, Option) { - | ^^^^^ -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `spec_int_ranges` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:468:25 - | -468 | fn spec_nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `spec_int_ranges` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:474:41 - | -474 | fn spec_try_fold(&mut self, init: Acc, mut f: F) -> R - | ^^^^^^^^^ -... -568 | spec_int_ranges!(u8 u16 u32 u64 usize); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `spec_int_ranges` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:516:31 - | -516 | fn spec_next_back(&mut self) -> Option { - | ^^^^^^^^^ -... -571 | spec_int_ranges_r!(u8 u16 u32 usize); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `spec_int_ranges_r` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:532:30 - | -532 | fn spec_nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ -... -571 | spec_int_ranges_r!(u8 u16 u32 usize); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `spec_int_ranges_r` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/step_by.rs:540:42 - | -540 | fn spec_try_rfold(&mut self, init: Acc, mut f: F) -> R - | ^^^^^^^^^ -... -571 | spec_int_ranges_r!(u8 u16 u32 usize); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `spec_int_ranges_r` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:14:10 - | -14 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:14:17 - | -14 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:36:13 - | -36 | fn next(&mut self) -> Option<::Item> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:46:12 - | -46 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:60:18 - | -60 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:78:31 - | -78 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:118:19 - | -118 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:138:24 - | -138 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:156:18 - | -156 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:167:17 - | -167 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:182:32 - | -182 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:220:24 - | -220 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:324:18 - | -324 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:329:17 - | -329 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:334:32 - | -334 | fn try_rfold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:354:24 - | -354 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:366:12 - | -366 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take.rs:373:12 - | -373 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take_while.rs:16:10 - | -16 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take_while.rs:31:12 - | -31 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take_while.rs:44:13 - | -44 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take_while.rs:59:18 - | -59 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take_while.rs:69:31 - | -69 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/take_while.rs:121:24 - | -121 | unsafe fn as_inner(&mut self) -> &mut I::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:12:10 - | -12 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:27:18 - | -27 | fn super_nth(&mut self, mut n: usize) -> Option<(A::Item, B::Item)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:85:13 - | -85 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:90:18 - | -90 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:95:12 - | -95 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:108:40 - | -108 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:125:18 - | -125 | fn next_back(&mut self) -> Option<(A::Item, B::Item)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:166:25 - | -166 | default fn next(&mut self) -> Option<(A::Item, B::Item)> { - | ^^^^^^^^^ -... -219 | zip_impl_general_defaults! {} - | ----------------------------- in this macro invocation - | - = note: this error originates in the macro `zip_impl_general_defaults` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:173:24 - | -173 | default fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ -... -219 | zip_impl_general_defaults! {} - | ----------------------------- in this macro invocation - | - = note: this error originates in the macro `zip_impl_general_defaults` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:178:30 - | -178 | default fn next_back(&mut self) -> Option<(A::Item, B::Item)> - | ^^^^^^^^^ -... -219 | zip_impl_general_defaults! {} - | ----------------------------- in this macro invocation - | - = note: this error originates in the macro `zip_impl_general_defaults` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:222:26 - | -222 | default fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:238:37 - | -238 | default unsafe fn get_unchecked(&mut self, _idx: usize) -> ::Item - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:166:25 - | -166 | default fn next(&mut self) -> Option<(A::Item, B::Item)> { - | ^^^^^^^^^ -... -260 | zip_impl_general_defaults! {} - | ----------------------------- in this macro invocation - | - = note: this error originates in the macro `zip_impl_general_defaults` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:173:24 - | -173 | default fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ -... -260 | zip_impl_general_defaults! {} - | ----------------------------- in this macro invocation - | - = note: this error originates in the macro `zip_impl_general_defaults` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:178:30 - | -178 | default fn next_back(&mut self) -> Option<(A::Item, B::Item)> - | ^^^^^^^^^ -... -260 | zip_impl_general_defaults! {} - | ----------------------------- in this macro invocation - | - = note: this error originates in the macro `zip_impl_general_defaults` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:263:26 - | -263 | default fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:269:29 - | -269 | unsafe fn get_unchecked(&mut self, idx: usize) -> ::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:308:13 - | -308 | fn next(&mut self) -> Option<(A::Item, B::Item)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:335:18 - | -335 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:341:12 - | -341 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:369:18 - | -369 | fn next_back(&mut self) -> Option<(A::Item, B::Item)> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:484:24 - | -484 | unsafe fn as_inner(&mut self) -> &mut A::Source { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:499:12 - | -499 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:509:20 - | -509 | default fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:517:12 - | -517 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:630:41 - | -630 | default unsafe fn try_get_unchecked(&mut self, _: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/adapters/zip.rs:637:33 - | -637 | unsafe fn try_get_unchecked(&mut self, index: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:667:26 - | -667 | default fn spec_next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:678:25 - | -678 | default fn spec_nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:692:32 - | -692 | default fn spec_advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:708:31 - | -708 | default fn spec_next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:719:30 - | -719 | default fn spec_nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:733:37 - | -733 | default fn spec_advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:751:18 - | -751 | fn spec_next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:763:17 - | -763 | fn spec_nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:777:24 - | -777 | fn spec_advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:796:23 - | -796 | fn spec_next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:807:22 - | -807 | fn spec_nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:821:29 - | -821 | fn spec_advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:842:13 - | -842 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:847:18 - | -847 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:866:12 - | -866 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:897:19 - | -897 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:902:40 - | -902 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:965:18 - | -965 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:970:17 - | -970 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:975:24 - | -975 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1010:13 - | -1010 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1016:18 - | -1016 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1021:12 - | -1021 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1059:26 - | -1059 | default fn spec_next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1075:39 - | -1075 | default fn spec_try_fold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1104:31 - | -1104 | default fn spec_next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1120:40 - | -1120 | default fn spec_try_rfold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1151:18 - | -1151 | fn spec_next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1167:31 - | -1167 | fn spec_try_fold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1196:23 - | -1196 | fn spec_next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1212:32 - | -1212 | fn spec_try_rfold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1246:13 - | -1246 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1251:18 - | -1251 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1274:12 - | -1274 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1302:26 - | -1302 | fn try_fold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1343:18 - | -1343 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1348:17 - | -1348 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/range.rs:1376:27 - | -1376 | fn try_rfold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/empty.rs:34:12 - | -34 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/empty.rs:43:13 - | -43 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/empty.rs:47:18 - | -47 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/empty.rs:54:18 - | -54 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/empty.rs:61:12 - | -61 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/empty.rs:76:14 - | -76 | fn clone(&self) -> Empty { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/from_coroutine.rs:38:10 - | -38 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/from_coroutine.rs:45:13 - | -45 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/from_coroutine.rs:55:12 - | -55 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/from_fn.rs:56:10 - | -56 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/from_fn.rs:68:13 - | -68 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/from_fn.rs:75:12 - | -75 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once.rs:62:10 - | -62 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once.rs:62:17 - | -62 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once.rs:73:13 - | -73 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once.rs:77:18 - | -77 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once.rs:84:18 - | -84 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once.rs:91:12 - | -91 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once_with.rs:70:10 - | -70 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once_with.rs:78:12 - | -78 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once_with.rs:92:13 - | -92 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once_with.rs:98:18 - | -98 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once_with.rs:105:18 - | -105 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/once_with.rs:112:12 - | -112 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat.rs:67:10 - | -67 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat.rs:67:17 - | -67 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat.rs:78:13 - | -78 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat.rs:83:18 - | -83 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat.rs:88:19 - | -88 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat.rs:95:12 - | -95 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat.rs:112:18 - | -112 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat.rs:117:24 - | -117 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat.rs:124:17 - | -124 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:77:10 - | -77 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:77:17 - | -77 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:90:21 - | -90 | fn take_element(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:104:13 - | -104 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:114:13 - | -114 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:124:18 - | -124 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:130:19 - | -130 | fn advance_by(&mut self, skip: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:159:12 - | -159 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:167:18 - | -167 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:172:24 - | -172 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:177:17 - | -177 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_n.rs:190:30 - | -190 | unsafe fn next_unchecked(&mut self) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_with.rs:74:16 - | -74 | #[derive(Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_with.rs:82:12 - | -82 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_with.rs:92:13 - | -92 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_with.rs:97:18 - | -97 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/repeat_with.rs:102:31 - | -102 | fn try_fold(&mut self, mut init: Acc, mut fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/successors.rs:32:10 - | -32 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/successors.rs:47:13 - | -47 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/successors.rs:54:18 - | -54 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/sources/successors.rs:64:12 - | -64 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/collect.rs:490:43 - | -490 | fn extend>(&mut self, iter: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/collect.rs:493:19 - | -493 | fn extend_one(&mut self, _item: ()) {} - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/collect.rs:522:47 - | -522 | fn extend>(&mut self, into_iter: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/collect.rs:528:19 - | -528 | fn extend_one(&mut self, item: (A, B)) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/collect.rs:533:23 - | -533 | fn extend_reserve(&mut self, additional: usize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/collect.rs:538:36 - | -538 | unsafe fn extend_one_unchecked(&mut self, item: (A, B)) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/double_ended.rs:374:18 - | -374 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/double_ended.rs:377:24 - | -377 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/double_ended.rs:380:17 - | -380 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/double_ended.rs:389:27 - | -389 | fn try_rfold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/double_ended.rs:422:40 - | -422 | default fn spec_try_rfold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/double_ended.rs:438:32 - | -438 | fn spec_try_rfold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/exact_size.rs:155:12 - | -155 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/exact_size.rs:158:17 - | -158 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/iterator.rs:4098:13 - | -4098 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/iterator.rs:4101:18 - | -4101 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/iterator.rs:4104:19 - | -4104 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/iterator.rs:4107:12 - | -4107 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/iterator.rs:4116:26 - | -4116 | fn try_fold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/iterator.rs:4149:39 - | -4149 | default fn spec_try_fold(&mut self, init: B, mut f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/iterator.rs:4165:31 - | -4165 | fn spec_try_fold(&mut self, init: B, f: F) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/iter/traits/unchecked_iterator.rs:30:30 - | -30 | unsafe fn next_unchecked(&mut self) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/display_buffer.rs:17:19 - | -17 | pub fn as_str(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/display_buffer.rs:28:18 - | -28 | fn write_str(&mut self, s: &str) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:30:16 - | -30 | #[derive(Copy, Clone, Eq, PartialEq, Hash, PartialOrd, Ord)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:30:23 - | -30 | #[derive(Copy, Clone, Eq, PartialEq, Hash, PartialOrd, Ord)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:30:27 - | -30 | #[derive(Copy, Clone, Eq, PartialEq, Hash, PartialOrd, Ord)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:30:38 - | -30 | #[derive(Copy, Clone, Eq, PartialEq, Hash, PartialOrd, Ord)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:30:44 - | -30 | #[derive(Copy, Clone, Eq, PartialEq, Hash, PartialOrd, Ord)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:30:56 - | -30 | #[derive(Copy, Clone, Eq, PartialEq, Hash, PartialOrd, Ord)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:71:16 - | -71 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:71:23 - | -71 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:71:34 - | -71 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:79:24 - | -79 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:163:16 - | -163 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:163:23 - | -163 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:163:34 - | -163 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:171:24 - | -171 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:214:16 - | -214 | #[derive(Copy, PartialEq, Eq, Clone, Hash, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:214:27 - | -214 | #[derive(Copy, PartialEq, Eq, Clone, Hash, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:214:31 - | -214 | #[derive(Copy, PartialEq, Eq, Clone, Hash, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:214:38 - | -214 | #[derive(Copy, PartialEq, Eq, Clone, Hash, Debug)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:214:44 - | -214 | #[derive(Copy, PartialEq, Eq, Clone, Hash, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:252:33 - | -252 | pub const fn is_unspecified(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:276:30 - | -276 | pub const fn is_loopback(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:302:28 - | -302 | pub const fn is_global(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:326:31 - | -326 | pub const fn is_multicast(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:355:35 - | -355 | pub const fn is_documentation(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:380:34 - | -380 | pub const fn is_benchmarking(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:404:26 - | -404 | pub const fn is_ipv4(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:425:26 - | -425 | pub const fn is_ipv6(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:450:31 - | -450 | pub const fn to_canonical(&self) -> IpAddr { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:599:25 - | -599 | pub const fn octets(&self) -> [u8; 4] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:622:33 - | -622 | pub const fn is_unspecified(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:644:30 - | -644 | pub const fn is_loopback(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:675:29 - | -675 | pub const fn is_private(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:703:32 - | -703 | pub const fn is_link_local(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:783:28 - | -783 | pub const fn is_global(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:820:28 - | -820 | pub const fn is_shared(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:848:34 - | -848 | pub const fn is_benchmarking(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:885:30 - | -885 | pub const fn is_reserved(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:909:31 - | -909 | pub const fn is_multicast(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:931:31 - | -931 | pub const fn is_broadcast(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:959:35 - | -959 | pub const fn is_documentation(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:988:37 - | -988 | pub const fn to_ipv6_compatible(&self) -> Ipv6Addr { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1013:33 - | -1013 | pub const fn to_ipv6_mapped(&self) -> Ipv6Addr { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1021:12 - | -1021 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1031:12 - | -1031 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1082:12 - | -1082 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1103:12 - | -1103 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1111:11 - | -1111 | fn eq(&self, other: &Ipv4Addr) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1122:11 - | -1122 | fn eq(&self, other: &IpAddr) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1133:20 - | -1133 | fn partial_cmp(&self, other: &Ipv4Addr) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1141:20 - | -1141 | fn partial_cmp(&self, other: &Ipv4Addr) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1152:20 - | -1152 | fn partial_cmp(&self, other: &IpAddr) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1163:12 - | -1163 | fn cmp(&self, other: &Ipv4Addr) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1386:27 - | -1386 | pub const fn segments(&self) -> [u16; 8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1421:33 - | -1421 | pub const fn is_unspecified(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1445:30 - | -1445 | pub const fn is_loopback(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1517:28 - | -1517 | pub const fn is_global(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1569:34 - | -1569 | pub const fn is_unique_local(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1598:29 - | -1598 | pub const fn is_unicast(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1650:40 - | -1650 | pub const fn is_unicast_link_local(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1675:35 - | -1675 | pub const fn is_documentation(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1698:34 - | -1698 | pub const fn is_benchmarking(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1736:36 - | -1736 | pub const fn is_unicast_global(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1765:34 - | -1765 | pub const fn multicast_scope(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1800:31 - | -1800 | pub const fn is_multicast(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1825:33 - | -1825 | pub const fn is_ipv4_mapped(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1854:33 - | -1854 | pub const fn to_ipv4_mapped(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1896:26 - | -1896 | pub const fn to_ipv4(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1922:31 - | -1922 | pub const fn to_canonical(&self) -> IpAddr { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1941:25 - | -1941 | pub const fn octets(&self) -> [u8; 16] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1950:12 - | -1950 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:1959:32 - | -1959 | #[derive(Copy, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:2024:12 - | -2024 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:2032:11 - | -2032 | fn eq(&self, other: &IpAddr) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:2043:11 - | -2043 | fn eq(&self, other: &Ipv6Addr) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:2054:20 - | -2054 | fn partial_cmp(&self, other: &Ipv6Addr) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:2062:20 - | -2062 | fn partial_cmp(&self, other: &Ipv6Addr) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:2073:20 - | -2073 | fn partial_cmp(&self, other: &IpAddr) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:2084:12 - | -2084 | fn cmp(&self, other: &Ipv6Addr) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:2277:34 - | -2277 | fn $bitop_assign(&mut self, rhs: $ty) { - | ^^^^^^^^^ -... -2340 | / bitop_impls! { -2341 | | #[stable(feature = "ip_bitops", since = "1.75.0")] -2342 | | impl (BitAnd, BitAndAssign) for Ipv4Addr = (bitand, bitand_assign); -2343 | | #[stable(feature = "ip_bitops", since = "1.75.0")] -... | -2349 | | impl (BitOr, BitOrAssign) for Ipv6Addr = (bitor, bitor_assign); -2350 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `bitop_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/ip_addr.rs:2286:34 - | -2286 | fn $bitop_assign(&mut self, rhs: &'_ $ty) { - | ^^^^^^^^^ -... -2340 | / bitop_impls! { -2341 | | #[stable(feature = "ip_bitops", since = "1.75.0")] -2342 | | impl (BitAnd, BitAndAssign) for Ipv4Addr = (bitand, bitand_assign); -2343 | | #[stable(feature = "ip_bitops", since = "1.75.0")] -... | -2349 | | impl (BitOr, BitOrAssign) for Ipv6Addr = (bitor, bitor_assign); -2350 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `bitop_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:21:24 - | -21 | fn checked_mul(&self, other: u32) -> Option { - | ^^^^^ -... -31 | impl_helper! { u8 u16 u32 } - | --------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_helper` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:25:24 - | -25 | fn checked_add(&self, other: u32) -> Option { - | ^^^^^ -... -31 | impl_helper! { u8 u16 u32 } - | --------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_helper` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:44:30 - | -44 | fn read_atomically(&mut self, inner: F) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:58:25 - | -58 | fn parse_with(&mut self, inner: F, kind: AddrKind) -> Result - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:67:18 - | -67 | fn peek_char(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:72:18 - | -72 | fn read_char(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:81:24 - | -81 | fn read_given_char(&mut self, target: char) -> Option<()> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:91:29 - | -91 | fn read_separator(&mut self, sep: char, index: usize, inner: F) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:110:9 - | -110 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:161:23 - | -161 | fn read_ipv4_addr(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:178:23 - | -178 | fn read_ipv6_addr(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:245:21 - | -245 | fn read_ip_addr(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:250:18 - | -250 | fn read_port(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:258:22 - | -258 | fn read_scope_id(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:266:28 - | -266 | fn read_socket_addr_v4(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:275:28 - | -275 | fn read_socket_addr_v6(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:288:25 - | -288 | fn read_socket_addr(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:460:10 - | -460 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:460:17 - | -460 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:460:24 - | -460 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:460:35 - | -460 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:495:10 - | -495 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:495:17 - | -495 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:495:24 - | -495 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:495:35 - | -495 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:501:12 - | -501 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/parser.rs:509:20 - | -509 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:27:16 - | -27 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:27:23 - | -27 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:27:34 - | -27 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:27:38 - | -27 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:27:44 - | -27 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:27:56 - | -27 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:63:16 - | -63 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:63:23 - | -63 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:63:27 - | -63 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:63:38 - | -63 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:63:43 - | -63 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:63:55 - | -63 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:96:16 - | -96 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:96:23 - | -96 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:96:27 - | -96 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:96:38 - | -96 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:96:43 - | -96 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:96:55 - | -96 | #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:144:21 - | -144 | pub const fn ip(&self) -> IpAddr { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:164:19 - | -164 | pub fn set_ip(&mut self, new_ip: IpAddr) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:187:23 - | -187 | pub const fn port(&self) -> u16 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:207:21 - | -207 | pub fn set_port(&mut self, new_port: u16) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:233:26 - | -233 | pub const fn is_ipv4(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:256:26 - | -256 | pub const fn is_ipv6(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:295:21 - | -295 | pub const fn ip(&self) -> &Ipv4Addr { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:312:19 - | -312 | pub fn set_ip(&mut self, new_ip: Ipv4Addr) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:330:23 - | -330 | pub const fn port(&self) -> u16 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:347:21 - | -347 | pub fn set_port(&mut self, new_port: u16) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:391:21 - | -391 | pub const fn ip(&self) -> &Ipv6Addr { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:408:19 - | -408 | pub fn set_ip(&mut self, new_ip: Ipv6Addr) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:426:23 - | -426 | pub const fn port(&self) -> u16 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:443:21 - | -443 | pub fn set_port(&mut self, new_port: u16) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:471:27 - | -471 | pub const fn flowinfo(&self) -> u32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:490:25 - | -490 | pub fn set_flowinfo(&mut self, new_flowinfo: u32) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:513:27 - | -513 | pub const fn scope_id(&self) -> u32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:532:25 - | -532 | pub fn set_scope_id(&mut self, new_scope_id: u32) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:570:12 - | -570 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:580:12 - | -580 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:587:12 - | -587 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:606:12 - | -606 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:613:12 - | -613 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/net/socket_addr.rs:640:12 - | -640 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:566:16 - | -566 | #[derive(Copy, Eq, Debug, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:566:20 - | -566 | #[derive(Copy, Eq, Debug, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:566:27 - | -566 | #[derive(Copy, Eq, Debug, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:606:26 - | -606 | pub const fn is_some(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:650:26 - | -650 | pub const fn is_none(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:705:25 - | -705 | pub const fn as_ref(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:727:25 - | -727 | pub const fn as_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:741:35 - | -741 | pub const fn as_pin_ref(self: Pin<&Self>) -> Option> { - | ^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:757:35 - | -757 | pub const fn as_pin_mut(self: Pin<&mut Self>) -> Option> { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:769:18 - | -769 | const fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:803:27 - | -803 | pub const fn as_slice(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:858:31 - | -858 | pub const fn as_mut_slice(&mut self) -> &mut [T] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1289:21 - | -1289 | pub fn as_deref(&self) -> Option<&T::Target> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1315:25 - | -1315 | pub fn as_deref_mut(&mut self) -> Option<&mut T::Target> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1343:23 - | -1343 | pub const fn iter(&self) -> Iter<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1364:21 - | -1364 | pub fn iter_mut(&mut self) -> IterMut<'_, T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1606:19 - | -1606 | pub fn insert(&mut self, value: T) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1635:26 - | -1635 | pub fn get_or_insert(&mut self, value: T) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1666:34 - | -1666 | pub fn get_or_insert_default(&mut self) -> &mut T - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1692:34 - | -1692 | pub fn get_or_insert_with(&mut self, f: F) -> &mut T - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1727:23 - | -1727 | pub const fn take(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1758:23 - | -1758 | pub fn take_if

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:1785:26 - | -1785 | pub const fn replace(&mut self, value: T) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2038:14 - | -2038 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2046:19 - | -2046 | fn clone_from(&mut self, source: &Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2187:11 - | -2187 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2205:20 - | -2205 | fn partial_cmp(&self, other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2218:12 - | -2218 | fn cmp(&self, other: &Self) -> cmp::Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2232:10 - | -2232 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2232:17 - | -2232 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2241:13 - | -2241 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2246:18 - | -2246 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2254:18 - | -2254 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2261:12 - | -2261 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2274:10 - | -2274 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2284:13 - | -2284 | fn next(&mut self) -> Option<&'a A> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2288:18 - | -2288 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2296:18 - | -2296 | fn next_back(&mut self) -> Option<&'a A> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2313:14 - | -2313 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2324:10 - | -2324 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2334:13 - | -2334 | fn next(&mut self) -> Option<&'a mut A> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2338:18 - | -2338 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2346:18 - | -2346 | fn next_back(&mut self) -> Option<&'a mut A> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2364:10 - | -2364 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2364:17 - | -2364 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2375:13 - | -2375 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2379:18 - | -2379 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/option.rs:2387:18 - | -2387 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic.rs:157:17 - | -157 | fn take_box(&mut self) -> *mut (dyn Any + Send); - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic.rs:160:12 - | -160 | fn get(&mut self) -> &(dyn Any + Send); - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic.rs:163:15 - | -163 | fn as_str(&mut self) -> Option<&str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:32:16 - | -32 | #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:32:23 - | -32 | #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:32:30 - | -32 | #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:32:34 - | -32 | #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:32:40 - | -32 | #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:32:45 - | -32 | #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:32:56 - | -32 | #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:129:23 - | -129 | pub const fn file(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:154:23 - | -154 | pub const fn line(&self) -> u32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:179:25 - | -179 | pub const fn column(&self) -> u32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/location.rs:199:12 - | -199 | fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:13:10 - | -13 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:61:20 - | -61 | pub fn message(&self) -> PanicMessage<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:91:21 - | -91 | pub fn location(&self) -> Option<&Location<'_>> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:110:20 - | -110 | pub fn payload(&self) -> &(dyn crate::any::Any + Send) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:127:23 - | -127 | pub fn can_unwind(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:138:31 - | -138 | pub fn force_no_backtrace(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:145:12 - | -145 | fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:171:25 - | -171 | pub const fn as_str(&self) -> Option<&'static str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:179:12 - | -179 | fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/panic_info.rs:187:12 - | -187 | fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/unwind_safe.rs:254:14 - | -254 | fn deref(&self) -> &T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/unwind_safe.rs:261:18 - | -261 | fn deref_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/unwind_safe.rs:278:12 - | -278 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/unwind_safe.rs:294:19 - | -294 | fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/unwind_safe.rs:305:24 - | -305 | fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panic/unwind_safe.rs:310:18 - | -310 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panicking.rs:344:10 - | -344 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/panicking.rs:383:16 - | -383 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1088:16 - | -1088 | #[derive(Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1117:11 - | -1117 | fn eq(&self, other: &Pin) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1121:11 - | -1121 | fn ne(&self, other: &Pin) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1134:20 - | -1134 | fn partial_cmp(&self, other: &Pin) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1138:11 - | -1138 | fn lt(&self, other: &Pin) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1142:11 - | -1142 | fn le(&self, other: &Pin) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1146:11 - | -1146 | fn gt(&self, other: &Pin) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1150:11 - | -1150 | fn ge(&self, other: &Pin) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1157:12 - | -1157 | fn cmp(&self, other: &Self) -> cmp::Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1164:24 - | -1164 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1369:19 - | -1369 | pub fn as_ref(&self) -> Pin<&Ptr::Target> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1413:19 - | -1413 | pub fn as_mut(&mut self) -> Pin<&mut Ptr::Target> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1428:31 - | -1428 | pub fn as_deref_mut(self: Pin<&mut Pin>) -> Pin<&mut Ptr::Target> { - | ^^^^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1478:16 - | -1478 | pub fn set(&mut self, value: Ptr::Target) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1680:14 - | -1680 | fn deref(&self) -> &Ptr::Target { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1687:18 - | -1687 | fn deref_mut(&mut self) -> &mut Ptr::Target { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1700:12 - | -1700 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1707:12 - | -1707 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/pin.rs:1714:12 - | -1714 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:51:10 - | -51 | #[derive(Clone, Copy, Default, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:51:32 - | -51 | #[derive(Clone, Copy, Default, PartialEq, Eq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:51:43 - | -51 | #[derive(Clone, Copy, Default, PartialEq, Eq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:51:47 - | -51 | #[derive(Clone, Copy, Default, PartialEq, Eq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:64:12 - | -64 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:90:17 - | -90 | pub fn iter(&self) -> IterRange { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:119:24 - | -119 | pub fn contains(&self, item: &U) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:152:21 - | -152 | pub fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:159:20 - | -159 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:162:18 - | -162 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:169:20 - | -169 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:172:18 - | -172 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:208:10 - | -208 | #[derive(Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:208:23 - | -208 | #[derive(Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:208:34 - | -208 | #[derive(Clone, Copy, PartialEq, Eq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:208:38 - | -208 | #[derive(Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:221:12 - | -221 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:254:24 - | -254 | pub fn contains(&self, item: &U) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:287:21 - | -287 | pub fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:310:17 - | -310 | pub fn iter(&self) -> IterRangeInclusive { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:326:20 - | -326 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:329:18 - | -329 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:336:20 - | -336 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:339:18 - | -339 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:391:10 - | -391 | #[derive(Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:391:23 - | -391 | #[derive(Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:391:34 - | -391 | #[derive(Clone, Copy, PartialEq, Eq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:391:38 - | -391 | #[derive(Clone, Copy, PartialEq, Eq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:401:12 - | -401 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:426:17 - | -426 | pub fn iter(&self) -> IterRangeFrom { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:450:24 - | -450 | pub fn contains(&self, item: &U) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:461:20 - | -461 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:464:18 - | -464 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:471:20 - | -471 | fn start_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range.rs:474:18 - | -474 | fn end_bound(&self) -> Bound<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:9:10 - | -9 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:9:17 - | -9 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:56:13 - | -56 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:61:18 - | -61 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:71:12 - | -71 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:102:19 - | -102 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:107:40 - | -107 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:122:18 - | -122 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:127:17 - | -127 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:132:24 - | -132 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:155:10 - | -155 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:155:17 - | -155 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:176:13 - | -176 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:181:18 - | -181 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:191:12 - | -191 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:222:19 - | -222 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:230:18 - | -230 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:235:17 - | -235 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:240:24 - | -240 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:295:10 - | -295 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:295:17 - | -295 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:310:13 - | -310 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:315:18 - | -315 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/range/iter.rs:320:12 - | -320 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:523:16 - | -523 | #[derive(Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:523:27 - | -523 | #[derive(Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:523:39 - | -523 | #[derive(Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:523:43 - | -523 | #[derive(Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:523:48 - | -523 | #[derive(Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:523:55 - | -523 | #[derive(Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:563:24 - | -563 | pub const fn is_ok(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:606:25 - | -606 | pub const fn is_err(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:707:25 - | -707 | pub const fn as_ref(&self) -> Result<&T, &E> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:737:25 - | -737 | pub const fn as_mut(&mut self) -> Result<&mut T, &mut E> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:923:21 - | -923 | pub fn as_deref(&self) -> Result<&T::Target, &E> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:950:25 - | -950 | pub fn as_deref_mut(&mut self) -> Result<&mut T::Target, &mut E> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:976:17 - | -976 | pub fn iter(&self) -> Iter<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:999:21 - | -999 | pub fn iter_mut(&mut self) -> IterMut<'_, T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1703:14 - | -1703 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1711:19 - | -1711 | fn clone_from(&mut self, source: &Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1775:10 - | -1775 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1786:13 - | -1786 | fn next(&mut self) -> Option<&'a T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1790:18 - | -1790 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1799:18 - | -1799 | fn next_back(&mut self) -> Option<&'a T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1816:14 - | -1816 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1824:10 - | -1824 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1835:13 - | -1835 | fn next(&mut self) -> Option<&'a mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1839:18 - | -1839 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1848:18 - | -1848 | fn next_back(&mut self) -> Option<&'a mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1870:10 - | -1870 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1870:17 - | -1870 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1881:13 - | -1881 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1885:18 - | -1885 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/result.rs:1894:18 - | -1894 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:317:16 - | -317 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:317:23 - | -317 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:317:30 - | -317 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:317:34 - | -317 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:317:45 - | -317 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:476:20 - | -476 | pub fn get_mut(&mut self) -> &mut bool { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:604:17 - | -604 | pub fn load(&self, order: Ordering) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:632:18 - | -632 | pub fn store(&self, val: bool, order: Ordering) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:664:17 - | -664 | pub fn swap(&self, val: bool, order: Ordering) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:725:29 - | -725 | pub fn compare_and_swap(&self, current: bool, new: bool, order: Ordering) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:774:9 - | -774 | &self, - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:856:9 - | -856 | &self, - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:911:22 - | -911 | pub fn fetch_and(&self, val: bool, order: Ordering) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:953:23 - | -953 | pub fn fetch_nand(&self, val: bool, order: Ordering) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1005:21 - | -1005 | pub fn fetch_or(&self, val: bool, order: Ordering) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1046:22 - | -1046 | pub fn fetch_xor(&self, val: bool, order: Ordering) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1083:22 - | -1083 | pub fn fetch_not(&self, order: Ordering) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1119:25 - | -1119 | pub const fn as_ptr(&self) -> *mut bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1170:9 - | -1170 | &self, - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1272:20 - | -1272 | pub fn get_mut(&mut self) -> &mut *mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1422:17 - | -1422 | pub fn load(&self, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1451:18 - | -1451 | pub fn store(&self, ptr: *mut T, order: Ordering) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1484:17 - | -1484 | pub fn swap(&self, ptr: *mut T, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1540:29 - | -1540 | pub fn compare_and_swap(&self, current: *mut T, new: *mut T, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1581:9 - | -1581 | &self, - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1630:9 - | -1630 | &self, - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1699:9 - | -1699 | &self, - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1754:26 - | -1754 | pub fn fetch_ptr_add(&self, val: usize, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1799:26 - | -1799 | pub fn fetch_ptr_sub(&self, val: usize, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1834:27 - | -1834 | pub fn fetch_byte_add(&self, val: usize, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1869:27 - | -1869 | pub fn fetch_byte_sub(&self, val: usize, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1920:21 - | -1920 | pub fn fetch_or(&self, val: usize, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:1970:22 - | -1970 | pub fn fetch_and(&self, val: usize, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2018:22 - | -2018 | pub fn fetch_xor(&self, val: usize, order: Ordering) -> *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2056:25 - | -2056 | pub const fn as_ptr(&self) -> *mut *mut T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3028 | / atomic_int! { -3029 | | cfg(target_has_atomic = "8"), -3030 | | cfg(target_has_atomic_equal_alignment = "8"), -3031 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3043 | | i8 AtomicI8 -3044 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3046 | / atomic_int! { -3047 | | cfg(target_has_atomic = "8"), -3048 | | cfg(target_has_atomic_equal_alignment = "8"), -3049 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3061 | | u8 AtomicU8 -3062 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3064 | / atomic_int! { -3065 | | cfg(target_has_atomic = "16"), -3066 | | cfg(target_has_atomic_equal_alignment = "16"), -3067 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3079 | | i16 AtomicI16 -3080 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3082 | / atomic_int! { -3083 | | cfg(target_has_atomic = "16"), -3084 | | cfg(target_has_atomic_equal_alignment = "16"), -3085 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3097 | | u16 AtomicU16 -3098 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3100 | / atomic_int! { -3101 | | cfg(target_has_atomic = "32"), -3102 | | cfg(target_has_atomic_equal_alignment = "32"), -3103 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3115 | | i32 AtomicI32 -3116 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3118 | / atomic_int! { -3119 | | cfg(target_has_atomic = "32"), -3120 | | cfg(target_has_atomic_equal_alignment = "32"), -3121 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3133 | | u32 AtomicU32 -3134 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3136 | / atomic_int! { -3137 | | cfg(target_has_atomic = "64"), -3138 | | cfg(target_has_atomic_equal_alignment = "64"), -3139 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3151 | | i64 AtomicI64 -3152 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3154 | / atomic_int! { -3155 | | cfg(target_has_atomic = "64"), -3156 | | cfg(target_has_atomic_equal_alignment = "64"), -3157 | | stable(feature = "integer_atomics_stable", since = "1.34.0"), -... | -3169 | | u64 AtomicU64 -3170 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3172 | / atomic_int! { -3173 | | cfg(target_has_atomic = "128"), -3174 | | cfg(target_has_atomic_equal_alignment = "128"), -3175 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3187 | | i128 AtomicI128 -3188 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3190 | / atomic_int! { -3191 | | cfg(target_has_atomic = "128"), -3192 | | cfg(target_has_atomic_equal_alignment = "128"), -3193 | | unstable(feature = "integer_atomics", issue = "99069"), -... | -3205 | | u128 AtomicU128 -3206 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2167:20 - | -2167 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2270:28 - | -2270 | pub fn get_mut(&mut self) -> &mut $int_type { - | ^^^^^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2416:25 - | -2416 | pub fn load(&self, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2443:26 - | -2443 | pub fn store(&self, val: $int_type, order: Ordering) { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2471:25 - | -2471 | pub fn swap(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2529:37 - | -2529 | pub fn compare_and_swap(&self, - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2583:37 - | -2583 | pub fn compare_exchange(&self, - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2632:42 - | -2632 | pub fn compare_exchange_weak(&self, - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2668:30 - | -2668 | pub fn fetch_add(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2698:30 - | -2698 | pub fn fetch_sub(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2731:30 - | -2731 | pub fn fetch_and(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2764:31 - | -2764 | pub fn fetch_nand(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2797:29 - | -2797 | pub fn fetch_or(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2830:30 - | -2830 | pub fn fetch_xor(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2881:36 - | -2881 | pub fn fetch_update(&self, - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2935:30 - | -2935 | pub fn fetch_max(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:2981:30 - | -2981 | pub fn fetch_min(&self, val: $int_type, order: Ordering) -> $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3020:33 - | -3020 | pub const fn as_ptr(&self) -> *mut $int_type { - | ^^^^^ -... -3271 | / atomic_int_ptr_sized! { -3272 | | "16" 2 -3273 | | "32" 4 -3274 | | "64" 8 -3275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `atomic_int` which comes from the expansion of the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3748:12 - | -3748 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3756:12 - | -3756 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/atomic.rs:3764:12 - | -3764 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/exclusive.rs:93:12 - | -93 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/exclusive.rs:121:26 - | -121 | pub const fn get_mut(&mut self) -> &mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/exclusive.rs:134:36 - | -134 | pub const fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut T> { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/exclusive.rs:191:36 - | -191 | extern "rust-call" fn call_mut(&mut self, args: Args) -> Self::Output { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/exclusive.rs:204:19 - | -204 | fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/sync/exclusive.rs:218:21 - | -218 | fn resume(self: Pin<&mut Self>, arg: R) -> CoroutineState { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:23:16 - | -23 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:23:23 - | -23 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:23:30 - | -23 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:23:41 - | -23 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:102:16 - | -102 | #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:102:23 - | -102 | #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:102:39 - | -102 | #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:102:43 - | -102 | #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:102:49 - | -102 | #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:102:54 - | -102 | #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:102:65 - | -102 | #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:237:18 - | -237 | fn write_str(&mut self, s: &str) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:241:19 - | -241 | fn write_char(&mut self, c: char) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:245:18 - | -245 | fn write_fmt(&mut self, args: Arguments<'_>) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:318:16 - | -318 | #[derive(Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:375:31 - | -375 | pub fn estimated_capacity(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:441:25 - | -441 | pub const fn as_str(&self) -> Option<&'static str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:452:32 - | -452 | fn as_statically_known_str(&self) -> Option<&'static str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:466:12 - | -466 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:473:12 - | -473 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1266:28 - | -1266 | fn wrap_buf<'b, 'c, F>(&'b mut self, wrap: F) -> Formatter<'c> - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1332:25 - | -1332 | pub fn pad_integral(&mut self, is_nonnegative: bool, prefix: &str, buf: &str) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1427:16 - | -1427 | pub fn pad(&mut self, s: &str) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1479:9 - | -1479 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1511:35 - | -1511 | unsafe fn pad_formatted_parts(&mut self, formatted: &numfmt::Formatted<'_>) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1557:37 - | -1557 | unsafe fn write_formatted_parts(&mut self, formatted: &numfmt::Formatted<'_>) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1625:22 - | -1625 | pub fn write_str(&mut self, data: &str) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1654:22 - | -1654 | pub fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1670:18 - | -1670 | pub fn flags(&self) -> u32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1703:17 - | -1703 | pub fn fill(&self) -> char { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1738:18 - | -1738 | pub fn align(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1773:18 - | -1773 | pub fn width(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1804:22 - | -1804 | pub fn precision(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1836:22 - | -1836 | pub fn sign_plus(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1865:23 - | -1865 | pub fn sign_minus(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1893:22 - | -1893 | pub fn alternate(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1919:32 - | -1919 | pub fn sign_aware_zero_pad(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1925:24 - | -1925 | fn debug_lower_hex(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1929:24 - | -1929 | fn debug_upper_hex(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1970:29 - | -1970 | pub fn debug_struct<'b>(&'b mut self, name: &str) -> DebugStruct<'b, 'a> { - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1980:9 - | -1980 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:1996:9 - | -1996 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2015:9 - | -2015 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2037:9 - | -2037 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2062:9 - | -2062 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2089:9 - | -2089 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2129:28 - | -2129 | pub fn debug_tuple<'b>(&'b mut self, name: &str) -> DebugTuple<'b, 'a> { - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2138:42 - | -2138 | pub fn debug_tuple_field1_finish<'b>(&'b mut self, name: &str, value1: &dyn Debug) -> Result { - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2150:9 - | -2150 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2167:9 - | -2167 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2186:9 - | -2186 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2207:9 - | -2207 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2229:9 - | -2229 | &'b mut self, - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2259:27 - | -2259 | pub fn debug_list<'b>(&'b mut self) -> DebugList<'b, 'a> { - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2317:26 - | -2317 | pub fn debug_set<'b>(&'b mut self) -> DebugSet<'b, 'a> { - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2343:26 - | -2343 | pub fn debug_map<'b>(&'b mut self) -> DebugMap<'b, 'a> { - | ^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2350:18 - | -2350 | fn write_str(&mut self, s: &str) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2354:19 - | -2354 | fn write_char(&mut self, c: char) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2359:18 - | -2359 | fn write_fmt(&mut self, args: Arguments<'_>) -> Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2370:12 - | -2370 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2382:20 - | -2382 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { $tr::fmt(&**self, f) } - | ^^^^^ -... -2392 | fmt_refs! { Debug, Display, Octal, Binary, LowerHex, UpperHex, LowerExp, UpperExp } - | ----------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `fmt_refs` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2386:20 - | -2386 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { $tr::fmt(&**self, f) } - | ^^^^^ -... -2392 | fmt_refs! { Debug, Display, Octal, Binary, LowerHex, UpperHex, LowerExp, UpperExp } - | ----------------------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `fmt_refs` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2397:12 - | -2397 | fn fmt(&self, _: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2405:12 - | -2405 | fn fmt(&self, _: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2413:12 - | -2413 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2420:12 - | -2420 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2427:12 - | -2427 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2476:12 - | -2476 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2483:12 - | -2483 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2497:12 - | -2497 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2508:12 - | -2508 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2548:12 - | -2548 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2555:12 - | -2555 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2562:12 - | -2562 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2571:12 - | -2571 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2577:12 - | -2577 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2594:24 - | -2594 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -2628 | tuple! { E, D, C, B, A, Z, Y, X, W, V, U, T, } - | ---------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2632:12 - | -2632 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2640:12 - | -2640 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2646:12 - | -2646 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2653:12 - | -2653 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2660:12 - | -2660 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2672:12 - | -2672 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2679:12 - | -2679 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2686:12 - | -2686 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/mod.rs:2693:12 - | -2693 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:31:18 - | -31 | fn write_str(&mut self, s: &str) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:44:19 - | -44 | fn write_char(&mut self, c: char) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:132:18 - | -132 | pub fn field(&mut self, name: &str, value: &dyn fmt::Debug) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:141:26 - | -141 | pub fn field_with(&mut self, name: &str, value_fmt: F) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:197:34 - | -197 | pub fn finish_non_exhaustive(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:244:19 - | -244 | pub fn finish(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:253:18 - | -253 | fn is_pretty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:329:18 - | -329 | pub fn field(&mut self, value: &dyn fmt::Debug) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:338:26 - | -338 | pub fn field_with(&mut self, value_fmt: F) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:389:34 - | -389 | pub fn finish_non_exhaustive(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:433:19 - | -433 | pub fn finish(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:445:18 - | -445 | fn is_pretty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:458:22 - | -458 | fn entry_with(&mut self, entry_fmt: F) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:483:18 - | -483 | fn is_pretty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:550:18 - | -550 | pub fn entry(&mut self, entry: &dyn fmt::Debug) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:560:26 - | -560 | pub fn entry_with(&mut self, entry_fmt: F) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:592:26 - | -592 | pub fn entries(&mut self, entries: I) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:634:34 - | -634 | pub fn finish_non_exhaustive(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:676:19 - | -676 | pub fn finish(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:744:18 - | -744 | pub fn entry(&mut self, entry: &dyn fmt::Debug) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:754:26 - | -754 | pub fn entry_with(&mut self, entry_fmt: F) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:786:26 - | -786 | pub fn entries(&mut self, entries: I) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:828:34 - | -828 | pub fn finish_non_exhaustive(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:869:19 - | -869 | pub fn finish(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:941:18 - | -941 | pub fn entry(&mut self, key: &dyn fmt::Debug, value: &dyn fmt::Debug) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:977:16 - | -977 | pub fn key(&mut self, key: &dyn fmt::Debug) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:986:24 - | -986 | pub fn key_with(&mut self, key_fmt: F) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:1053:18 - | -1053 | pub fn value(&mut self, value: &dyn fmt::Debug) -> &mut Self { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:1062:26 - | -1062 | pub fn value_with(&mut self, value_fmt: F) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:1111:29 - | -1111 | pub fn entries(&mut self, entries: I) -> &mut Self - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:1158:34 - | -1158 | pub fn finish_non_exhaustive(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:1207:19 - | -1207 | pub fn finish(&mut self) -> fmt::Result { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:1216:18 - | -1216 | fn is_pretty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:1256:12 - | -1256 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/builders.rs:1266:12 - | -1266 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:15:61 - | -15 | fn already_rounded_value_should_use_exponential(&self) -> bool { - | ^^^^^ -... -23 | impl_general_format! { f32 f64 } - | -------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_general_format` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:202:20 - | -202 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -230 | floating! { f32 } - | ----------------- in this macro invocation - | - = note: this error originates in the macro `floating` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:209:20 - | -209 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -230 | floating! { f32 } - | ----------------- in this macro invocation - | - = note: this error originates in the macro `floating` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:216:20 - | -216 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -230 | floating! { f32 } - | ----------------- in this macro invocation - | - = note: this error originates in the macro `floating` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:223:20 - | -223 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -230 | floating! { f32 } - | ----------------- in this macro invocation - | - = note: this error originates in the macro `floating` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:202:20 - | -202 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -231 | floating! { f64 } - | ----------------- in this macro invocation - | - = note: this error originates in the macro `floating` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:209:20 - | -209 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -231 | floating! { f64 } - | ----------------- in this macro invocation - | - = note: this error originates in the macro `floating` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:216:20 - | -216 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -231 | floating! { f64 } - | ----------------- in this macro invocation - | - = note: this error originates in the macro `floating` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:223:20 - | -223 | fn fmt(&self, fmt: &mut Formatter<'_>) -> Result { - | ^^^^^ -... -231 | floating! { f64 } - | ----------------- in this macro invocation - | - = note: this error originates in the macro `floating` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:236:12 - | -236 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/float.rs:244:12 - | -244 | fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:26:20 - | -26 | fn to_u8(&self) -> u8 { *self as u8 } - | ^^^^^ -... -48 | impl_int! { i8 i16 i32 i64 i128 isize } - | --------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:29:21 - | -29 | fn to_u64(&self) -> u64 { *self as u64 } - | ^^^^^ -... -48 | impl_int! { i8 i16 i32 i64 i128 isize } - | --------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:30:22 - | -30 | fn to_u128(&self) -> u128 { *self as u128 } - | ^^^^^ -... -48 | impl_int! { i8 i16 i32 i64 i128 isize } - | --------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_int` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:39:20 - | -39 | fn to_u8(&self) -> u8 { *self as u8 } - | ^^^^^ -... -49 | impl_uint! { u8 u16 u32 u64 u128 usize } - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_uint` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:42:21 - | -42 | fn to_u64(&self) -> u64 { *self as u64 } - | ^^^^^ -... -49 | impl_uint! { u8 u16 u32 u64 u128 usize } - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_uint` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:43:22 - | -43 | fn to_u128(&self) -> u128 { *self as u128 } - | ^^^^^ -... -49 | impl_uint! { u8 u16 u32 u64 u128 usize } - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_uint` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:116:10 - | -116 | #[derive(Clone, PartialEq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:116:17 - | -116 | #[derive(Clone, PartialEq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:120:10 - | -120 | #[derive(Clone, PartialEq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:120:17 - | -120 | #[derive(Clone, PartialEq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:124:10 - | -124 | #[derive(Clone, PartialEq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:124:17 - | -124 | #[derive(Clone, PartialEq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:128:10 - | -128 | #[derive(Clone, PartialEq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:128:17 - | -128 | #[derive(Clone, PartialEq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -175 | integer! { isize, usize } - | ------------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -175 | integer! { isize, usize } - | ------------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -175 | integer! { isize, usize } - | ------------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -175 | integer! { isize, usize } - | ------------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -175 | integer! { isize, usize } - | ------------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -175 | integer! { isize, usize } - | ------------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -175 | integer! { isize, usize } - | ------------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -175 | integer! { isize, usize } - | ------------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -176 | integer! { i8, u8 } - | ------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -176 | integer! { i8, u8 } - | ------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -176 | integer! { i8, u8 } - | ------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -176 | integer! { i8, u8 } - | ------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -176 | integer! { i8, u8 } - | ------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -176 | integer! { i8, u8 } - | ------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -176 | integer! { i8, u8 } - | ------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -176 | integer! { i8, u8 } - | ------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -177 | integer! { i16, u16 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -177 | integer! { i16, u16 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -177 | integer! { i16, u16 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -177 | integer! { i16, u16 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -177 | integer! { i16, u16 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -177 | integer! { i16, u16 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -177 | integer! { i16, u16 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -177 | integer! { i16, u16 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -178 | integer! { i32, u32 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -178 | integer! { i32, u32 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -178 | integer! { i32, u32 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -178 | integer! { i32, u32 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -178 | integer! { i32, u32 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -178 | integer! { i32, u32 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -178 | integer! { i32, u32 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -178 | integer! { i32, u32 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -179 | integer! { i64, u64 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -179 | integer! { i64, u64 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -179 | integer! { i64, u64 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -179 | integer! { i64, u64 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -179 | integer! { i64, u64 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -179 | integer! { i64, u64 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -179 | integer! { i64, u64 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -179 | integer! { i64, u64 } - | --------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -180 | integer! { i128, u128 } - | ----------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -180 | integer! { i128, u128 } - | ----------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -180 | integer! { i128, u128 } - | ----------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -180 | integer! { i128, u128 } - | ----------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -180 | integer! { i128, u128 } - | ----------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -180 | integer! { i128, u128 } - | ----------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -180 | integer! { i128, u128 } - | ----------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:155:20 - | -155 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -180 | integer! { i128, u128 } - | ----------------------- in this macro invocation - | - = note: this error originates in the macro `int_base` which comes from the expansion of the macro `integer` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:186:20 - | -186 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -198 | / debug! { -199 | | i8 i16 i32 i64 i128 isize -200 | | u8 u16 u32 u64 u128 usize -201 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:467:24 - | -467 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -519 | impl_Exp!(i128, u128 as u128 via to_u128 named exp_u128); - | -------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_Exp` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:482:24 - | -482 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -519 | impl_Exp!(i128, u128 as u128 via to_u128 named exp_u128); - | -------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_Exp` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:610:12 - | -610 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:617:12 - | -617 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:313:20 - | -313 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -501 | / impl_Display!( -502 | | i8, u8, i16, u16, i32, u32, i64, u64, usize, isize -503 | | as u64 via to_u64 named fmt_u64 -504 | | ); - | |_____- in this macro invocation - | - = note: this error originates in the macro `impl_Display` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:467:24 - | -467 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -505 | / impl_Exp!( -506 | | i8, u8, i16, u16, i32, u32, i64, u64, usize, isize -507 | | as u64 via to_u64 named exp_u64 -508 | | ); - | |_____- in this macro invocation - | - = note: this error originates in the macro `impl_Exp` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/num.rs:482:24 - | -482 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -505 | / impl_Exp!( -506 | | i8, u8, i16, u16, i32, u32, i64, u64, usize, isize -507 | | as u64 via to_u64 named exp_u64 -508 | | ); - | |_____- in this macro invocation - | - = note: this error originates in the macro `impl_Exp` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:11:16 - | -11 | #[derive(Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:36:16 - | -36 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:36:23 - | -36 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:36:34 - | -36 | #[derive(Copy, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:47:16 - | -47 | #[derive(Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:58:16 - | -58 | #[derive(Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:68:16 - | -68 | #[derive(Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:91:16 - | -91 | #[derive(Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:168:30 - | -168 | pub(super) unsafe fn fmt(&self, f: &mut Formatter<'_>) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/fmt/rt.rs:184:28 - | -184 | pub(super) fn as_usize(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:559:15 - | -559 | fn finish(&self) -> u64 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:562:14 - | -562 | fn write(&mut self, bytes: &[u8]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:565:17 - | -565 | fn write_u8(&mut self, i: u8) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:568:18 - | -568 | fn write_u16(&mut self, i: u16) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:571:18 - | -571 | fn write_u32(&mut self, i: u32) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:574:18 - | -574 | fn write_u64(&mut self, i: u64) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:577:19 - | -577 | fn write_u128(&mut self, i: u128) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:580:20 - | -580 | fn write_usize(&mut self, i: usize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:583:17 - | -583 | fn write_i8(&mut self, i: i8) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:586:18 - | -586 | fn write_i16(&mut self, i: i16) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:589:18 - | -589 | fn write_i32(&mut self, i: i32) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:592:18 - | -592 | fn write_i64(&mut self, i: i64) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:595:19 - | -595 | fn write_i128(&mut self, i: i128) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:598:20 - | -598 | fn write_isize(&mut self, i: isize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:601:28 - | -601 | fn write_length_prefix(&mut self, len: usize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:604:18 - | -604 | fn write_str(&mut self, s: &str) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:767:12 - | -767 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:776:21 - | -776 | fn build_hasher(&self) -> H { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:783:14 - | -783 | fn clone(&self) -> BuildHasherDefault { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:797:11 - | -797 | fn eq(&self, _other: &BuildHasherDefault) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:16:10 - | -16 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:16:17 - | -16 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:27:10 - | -27 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:27:17 - | -27 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:46:10 - | -46 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:46:17 - | -46 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:49:10 - | -49 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:60:10 - | -60 | #[derive(Debug, Clone, Copy)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:60:17 - | -60 | #[derive(Debug, Clone, Copy)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:204:20 - | -204 | const fn reset(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:217:14 - | -217 | fn write(&mut self, msg: &[u8]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:222:18 - | -222 | fn write_str(&mut self, s: &str) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:227:15 - | -227 | fn finish(&self) -> u64 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:235:14 - | -235 | fn write(&mut self, msg: &[u8]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:240:18 - | -240 | fn write_str(&mut self, s: &str) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:245:15 - | -245 | fn finish(&self) -> u64 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:259:14 - | -259 | fn write(&mut self, msg: &[u8]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:306:18 - | -306 | fn write_str(&mut self, s: &str) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:314:15 - | -314 | fn finish(&self) -> u64 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:332:14 - | -332 | fn clone(&self) -> Hasher { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:359:10 - | -359 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:359:17 - | -359 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:376:10 - | -376 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/sip.rs:376:17 - | -376 | #[derive(Debug, Clone, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:814:36 - | -814 | fn hash(&self, state: &mut H) { - | ^^^^^ -... -832 | / impl_write! { -833 | | (u8, write_u8), -834 | | (u16, write_u16), -835 | | (u32, write_u32), -... | -844 | | (i128, write_i128), -845 | | } - | |_____- in this macro invocation - | - = note: this error originates in the macro `impl_write` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:850:28 - | -850 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:858:28 - | -858 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:866:28 - | -866 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:874:28 - | -874 | fn hash(&self, _: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:884:36 - | -884 | fn hash(&self, _state: &mut H) {} - | ^^^^^ -... -923 | impl_hash_tuple! {} - | ------------------- in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -924 | impl_hash_tuple! { T } - | ---------------------- in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -925 | impl_hash_tuple! { T B } - | ------------------------ in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -926 | impl_hash_tuple! { T B C } - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -927 | impl_hash_tuple! { T B C D } - | ---------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -928 | impl_hash_tuple! { T B C D E } - | ------------------------------ in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -929 | impl_hash_tuple! { T B C D E F } - | -------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -930 | impl_hash_tuple! { T B C D E F G } - | ---------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -931 | impl_hash_tuple! { T B C D E F G H } - | ------------------------------------ in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -932 | impl_hash_tuple! { T B C D E F G H I } - | -------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -933 | impl_hash_tuple! { T B C D E F G H I J } - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -934 | impl_hash_tuple! { T B C D E F G H I J K } - | ------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:895:40 - | -895 | fn hash(&self, state: &mut S) { - | ^^^^^ -... -935 | impl_hash_tuple! { T B C D E F G H I J K L } - | -------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `impl_hash_tuple` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:940:28 - | -940 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:949:28 - | -949 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:957:28 - | -957 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:965:28 - | -965 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/hash/mod.rs:975:28 - | -975 | fn hash(&self, state: &mut H) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:117:22 - | -117 | pub const fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:136:27 - | -136 | pub const fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:155:24 - | -155 | pub const fn first(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:178:28 - | -178 | pub const fn first_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:198:30 - | -198 | pub const fn split_first(&self) -> Option<(&T, &[T])> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:220:34 - | -220 | pub const fn split_first_mut(&mut self) -> Option<(&mut T, &mut [T])> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:240:29 - | -240 | pub const fn split_last(&self) -> Option<(&T, &[T])> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:262:33 - | -262 | pub const fn split_last_mut(&mut self) -> Option<(&mut T, &mut [T])> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:281:23 - | -281 | pub const fn last(&self) -> Option<&T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:304:27 - | -304 | pub const fn last_mut(&mut self) -> Option<&mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:327:46 - | -327 | pub const fn first_chunk(&self) -> Option<&[T; N]> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:357:50 - | -357 | pub const fn first_chunk_mut(&mut self) -> Option<&mut [T; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:387:52 - | -387 | pub const fn split_first_chunk(&self) -> Option<(&[T; N], &[T])> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:423:9 - | -423 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:457:51 - | -457 | pub const fn split_last_chunk(&self) -> Option<(&[T], &[T; N])> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:493:9 - | -493 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:527:45 - | -527 | pub const fn last_chunk(&self) -> Option<&[T; N]> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:561:49 - | -561 | pub const fn last_chunk_mut(&mut self) -> Option<&mut [T; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:596:19 - | -596 | pub fn get(&self, index: I) -> Option<&I::Output> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:621:23 - | -621 | pub fn get_mut(&mut self, index: I) -> Option<&mut I::Output> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:658:36 - | -658 | pub unsafe fn get_unchecked(&self, index: I) -> &I::Output - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:700:40 - | -700 | pub unsafe fn get_unchecked_mut(&mut self, index: I) -> &mut I::Output - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:741:25 - | -741 | pub const fn as_ptr(&self) -> *const T { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:772:29 - | -772 | pub const fn as_mut_ptr(&mut self) -> *mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:808:31 - | -808 | pub const fn as_ptr_range(&self) -> Range<*const T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:852:35 - | -852 | pub const fn as_mut_ptr_range(&mut self) -> Range<*mut T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:883:23 - | -883 | pub const fn swap(&mut self, a: usize, b: usize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:926:40 - | -926 | pub const unsafe fn swap_unchecked(&mut self, a: usize, b: usize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:955:20 - | -955 | pub fn reverse(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1013:17 - | -1013 | pub fn iter(&self) -> Iter<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1032:21 - | -1032 | pub fn iter_mut(&mut self) -> IterMut<'_, T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1081:20 - | -1081 | pub fn windows(&self, size: usize) -> Windows<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1116:19 - | -1116 | pub fn chunks(&self, chunk_size: usize) -> Chunks<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1155:23 - | -1155 | pub fn chunks_mut(&mut self, chunk_size: usize) -> ChunksMut<'_, T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1193:25 - | -1193 | pub fn chunks_exact(&self, chunk_size: usize) -> ChunksExact<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1236:29 - | -1236 | pub fn chunks_exact_mut(&mut self, chunk_size: usize) -> ChunksExactMut<'_, T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1271:61 - | -1271 | pub const unsafe fn as_chunks_unchecked(&self) -> &[[T; N]] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1317:44 - | -1317 | pub const fn as_chunks(&self) -> (&[[T; N]], &[T]) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1351:45 - | -1351 | pub const fn as_rchunks(&self) -> (&[T], &[[T; N]]) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1391:41 - | -1391 | pub fn array_chunks(&self) -> ArrayChunks<'_, T, N> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1428:65 - | -1428 | pub const unsafe fn as_chunks_unchecked_mut(&mut self) -> &mut [[T; N]] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1469:48 - | -1469 | pub const fn as_chunks_mut(&mut self) -> (&mut [[T; N]], &mut [T]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1509:49 - | -1509 | pub const fn as_rchunks_mut(&mut self) -> (&mut [T], &mut [[T; N]]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1551:45 - | -1551 | pub fn array_chunks_mut(&mut self) -> ArrayChunksMut<'_, T, N> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1584:42 - | -1584 | pub fn array_windows(&self) -> ArrayWindows<'_, T, N> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1619:20 - | -1619 | pub fn rchunks(&self, chunk_size: usize) -> RChunks<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1658:24 - | -1658 | pub fn rchunks_mut(&mut self, chunk_size: usize) -> RChunksMut<'_, T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1698:26 - | -1698 | pub fn rchunks_exact(&self, chunk_size: usize) -> RChunksExact<'_, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1742:30 - | -1742 | pub fn rchunks_exact_mut(&mut self, chunk_size: usize) -> RChunksExactMut<'_, T> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1781:24 - | -1781 | pub fn chunk_by(&self, pred: F) -> ChunkBy<'_, T, F> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1822:28 - | -1822 | pub fn chunk_by_mut(&mut self, pred: F) -> ChunkByMut<'_, T, F> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1869:27 - | -1869 | pub const fn split_at(&self, mid: usize) -> (&[T], &[T]) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1903:31 - | -1903 | pub const fn split_at_mut(&mut self, mid: usize) -> (&mut [T], &mut [T]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:1954:44 - | -1954 | pub const unsafe fn split_at_unchecked(&self, mid: usize) -> (&[T], &[T]) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2007:48 - | -2007 | pub const unsafe fn split_at_mut_unchecked(&mut self, mid: usize) -> (&mut [T], &mut [T]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2068:35 - | -2068 | pub const fn split_at_checked(&self, mid: usize) -> Option<(&[T], &[T])> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2107:39 - | -2107 | pub const fn split_at_mut_checked(&mut self, mid: usize) -> Option<(&mut [T], &mut [T])> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2159:21 - | -2159 | pub fn split(&self, pred: F) -> Split<'_, T, F> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2181:25 - | -2181 | pub fn split_mut(&mut self, pred: F) -> SplitMut<'_, T, F> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2217:31 - | -2217 | pub fn split_inclusive(&self, pred: F) -> SplitInclusive<'_, T, F> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2241:35 - | -2241 | pub fn split_inclusive_mut(&mut self, pred: F) -> SplitInclusiveMut<'_, T, F> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2277:22 - | -2277 | pub fn rsplit(&self, pred: F) -> RSplit<'_, T, F> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2303:26 - | -2303 | pub fn rsplit_mut(&mut self, pred: F) -> RSplitMut<'_, T, F> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2331:22 - | -2331 | pub fn splitn(&self, n: usize, pred: F) -> SplitN<'_, T, F> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2357:26 - | -2357 | pub fn splitn_mut(&mut self, n: usize, pred: F) -> SplitNMut<'_, T, F> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2386:23 - | -2386 | pub fn rsplitn(&self, n: usize, pred: F) -> RSplitN<'_, T, F> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2413:27 - | -2413 | pub fn rsplitn_mut(&mut self, n: usize, pred: F) -> RSplitNMut<'_, T, F> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2440:26 - | -2440 | pub fn split_once(&self, pred: F) -> Option<(&[T], &[T])> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2468:27 - | -2468 | pub fn rsplit_once(&self, pred: F) -> Option<(&[T], &[T])> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2504:21 - | -2504 | pub fn contains(&self, x: &T) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2534:24 - | -2534 | pub fn starts_with(&self, needle: &[T]) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2565:22 - | -2565 | pub fn ends_with(&self, needle: &[T]) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2597:61 - | -2597 | pub fn strip_prefix + ?Sized>(&self, prefix: &P) -> Option<&[T]> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2633:61 - | -2633 | pub fn strip_suffix + ?Sized>(&self, suffix: &P) -> Option<&[T]> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2719:26 - | -2719 | pub fn binary_search(&self, x: &T) -> Result - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2770:36 - | -2770 | pub fn binary_search_by<'a, F>(&'a self, mut f: F) -> Result - | ^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2871:43 - | -2871 | pub fn binary_search_by_key<'a, B, F>(&'a self, b: &B, mut f: F) -> Result - | ^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2925:26 - | -2925 | pub fn sort_unstable(&mut self) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:2977:32 - | -2977 | pub fn sort_unstable_by(&mut self, mut compare: F) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3022:39 - | -3022 | pub fn sort_unstable_by_key(&mut self, mut f: F) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3084:32 - | -3084 | pub fn select_nth_unstable(&mut self, index: usize) -> (&mut [T], &mut T, &mut [T]) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3146:9 - | -3146 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3211:9 - | -3211 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3244:28 - | -3244 | pub fn partition_dedup(&mut self) -> (&mut [T], &mut [T]) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3278:34 - | -3278 | pub fn partition_dedup_by(&mut self, mut same_bucket: F) -> (&mut [T], &mut [T]) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3404:41 - | -3404 | pub fn partition_dedup_by_key(&mut self, mut key: F) -> (&mut [T], &mut [T]) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3445:24 - | -3445 | pub fn rotate_left(&mut self, mid: usize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3490:25 - | -3490 | pub fn rotate_right(&mut self, k: usize) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3513:17 - | -3513 | pub fn fill(&mut self, value: T) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3537:25 - | -3537 | pub fn fill_with(&mut self, mut f: F) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3600:29 - | -3600 | pub fn clone_from_slice(&mut self, src: &[T]) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3664:28 - | -3664 | pub fn copy_from_slice(&mut self, src: &[T]) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3718:47 - | -3718 | pub fn copy_within>(&mut self, src: R, dest: usize) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3785:28 - | -3785 | pub fn swap_with_slice(&mut self, other: &mut [T]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3796:28 - | -3796 | fn align_to_offsets(&self) -> (usize, usize) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3862:31 - | -3862 | pub unsafe fn align_to(&self) -> (&[T], &[U], &[T]) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:3927:35 - | -3927 | pub unsafe fn align_to_mut(&mut self) -> (&mut [T], &mut [U], &mut [T]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4018:40 - | -4018 | pub fn as_simd(&self) -> (&[T], &[Simd], &[T]) - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4054:44 - | -4054 | pub fn as_simd_mut(&mut self) -> (&mut [T], &mut [Simd], &mut [T]) - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4093:22 - | -4093 | pub fn is_sorted(&self) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4120:32 - | -4120 | pub fn is_sorted_by<'a, F>(&'a self, mut compare: F) -> bool - | ^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4144:39 - | -4144 | pub fn is_sorted_by_key<'a, F, K>(&'a self, f: F) -> bool - | ^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4203:31 - | -4203 | pub fn partition_point

(&self, mut pred: P) -> usize - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4261:52 - | -4261 | pub fn take<'a, R: OneSidedRange>(self: &mut &'a Self, range: R) -> Option<&'a Self> { - | ^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4331:15 - | -4331 | self: &mut &'a mut Self, - | ^^^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4369:33 - | -4369 | pub fn take_first<'a>(self: &mut &'a Self) -> Option<&'a T> { - | ^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4394:37 - | -4394 | pub fn take_first_mut<'a>(self: &mut &'a mut Self) -> Option<&'a mut T> { - | ^^^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4418:32 - | -4418 | pub fn take_last<'a>(self: &mut &'a Self) -> Option<&'a T> { - | ^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4443:36 - | -4443 | pub fn take_last_mut<'a>(self: &mut &'a mut Self) -> Option<&'a mut T> { - | ^^^^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4478:9 - | -4478 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4520:9 - | -4520 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4573:24 - | -4573 | pub fn elem_offset(&self, element: &T) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4626:27 - | -4626 | pub fn subslice_range(&self, subslice: &[T]) -> Option> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4676:31 - | -4676 | pub const fn as_flattened(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4712:29 - | -4712 | pub fn as_flattened_mut(&mut self) -> &mut [T] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4749:24 - | -4749 | pub fn sort_floats(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4778:24 - | -4778 | pub fn sort_floats(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4792:32 - | -4792 | default fn spec_clone_from(&mut self, src: &[T]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4810:24 - | -4810 | fn spec_clone_from(&mut self, src: &[T]) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4848:17 - | -4848 | fn as_slice(&self) -> &[Self::Item] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4858:17 - | -4858 | fn as_slice(&self) -> &[Self::Item] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4904:12 - | -4904 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/mod.rs:4911:12 - | -4911 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/sort/stable/mod.rs:108:28 - | -108 | fn as_uninit_slice_mut(&mut self) -> &mut [MaybeUninit] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/sort/stable/drift.rs:275:16 - | -275 | #[derive(Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/sort/stable/merge.rs:79:9 - | -79 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/sort/stable/merge.rs:109:9 - | -109 | &mut self, - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/sort/stable/merge.rs:139:13 - | -139 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/sort/stable/quicksort.rs:214:29 - | -214 | unsafe fn partition_one(&mut self, towards_left: bool) -> *mut T { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/sort/unstable/quicksort.rs:325:13 - | -325 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/sort/unstable/quicksort.rs:342:13 - | -342 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/sort/shared/smallsort.rs:302:13 - | -302 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:15:27 - | -15 | pub const fn is_ascii(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:24:27 - | -24 | pub const fn as_ascii(&self) -> Option<&[ascii::Char]> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:42:44 - | -42 | pub const unsafe fn as_ascii_unchecked(&self) -> &[ascii::Char] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:56:33 - | -56 | pub fn eq_ignore_ascii_case(&self, other: &[u8]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:71:33 - | -71 | pub fn make_ascii_uppercase(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:88:33 - | -88 | pub fn make_ascii_lowercase(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:108:25 - | -108 | pub fn escape_ascii(&self) -> EscapeAscii<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:127:35 - | -127 | pub const fn trim_ascii_start(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:156:33 - | -156 | pub const fn trim_ascii_end(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:186:29 - | -186 | pub const fn trim_ascii(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:192:14 - | -192 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:97:44 - | -97 | extern "rust-call" fn call(&self, ($( $arg, )*): ($( $ArgTy, )*)) -> $ReturnTy { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:191:1 - | -191 | / impl_fn_for_zst! { -192 | | #[derive(Clone)] -193 | | struct EscapeByte impl Fn = |byte: &u8| -> ascii::EscapeDefault { -194 | | ascii::escape_default(*byte) -195 | | }; -196 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `impl_fn_for_zst` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:105:21 - | -105 | &mut self, - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:191:1 - | -191 | / impl_fn_for_zst! { -192 | | #[derive(Clone)] -193 | | struct EscapeByte impl Fn = |byte: &u8| -> ascii::EscapeDefault { -194 | | ascii::escape_default(*byte) -195 | | }; -196 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `impl_fn_for_zst` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:203:10 - | -203 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:213:13 - | -213 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:217:18 - | -217 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:221:31 - | -221 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:243:18 - | -243 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:251:12 - | -251 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/ascii.rs:295:12 - | -295 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/cmp.rs:14:11 - | -14 | fn eq(&self, other: &[U]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/cmp.rs:18:11 - | -18 | fn ne(&self, other: &[U]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/cmp.rs:29:12 - | -29 | fn cmp(&self, other: &[T]) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/cmp.rs:37:20 - | -37 | fn partial_cmp(&self, other: &[T]) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/cmp.rs:57:22 - | -57 | default fn equal(&self, other: &[B]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/cmp.rs:82:14 - | -82 | fn equal(&self, other: &[B]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/cmp.rs:236:31 - | -236 | default fn slice_contains(&self, x: &[Self]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/cmp.rs:243:23 - | -243 | fn slice_contains(&self, x: &[Self]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/cmp.rs:250:23 - | -250 | fn slice_contains(&self, x: &[Self]) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/index.rs:15:14 - | -15 | fn index(&self, index: I) -> &I::Output { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/index.rs:26:18 - | -26 | fn index_mut(&mut self, index: I) -> &mut I::Output { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:78:12 - | -78 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:129:21 - | -129 | pub fn as_slice(&self) -> &'a [T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:80:43 - | -80 | unsafe fn next_back_unchecked(&mut self) -> $elem { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:88:27 - | -88 | fn make_slice(&self) -> &'a [T] { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:99:38 - | -99 | unsafe fn post_inc_start(&mut self, offset: usize) -> NonNull { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:118:35 - | -118 | unsafe fn pre_dec_end(&mut self, offset: usize) -> NonNull { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:141:20 - | -141 | fn len(&self) -> usize { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:146:25 - | -146 | fn is_empty(&self) -> bool { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:156:21 - | -156 | fn next(&mut self) -> Option<$elem> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:171:26 - | -171 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:182:20 - | -182 | fn nth(&mut self, n: usize) -> Option<$elem> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:199:27 - | -199 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:262:23 - | -262 | fn all(&mut self, mut f: F) -> bool - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:279:23 - | -279 | fn any(&mut self, mut f: F) -> bool - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:296:24 - | -296 | fn find

(&mut self, mut predicate: P) -> Option - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:313:31 - | -313 | fn find_map(&mut self, mut f: F) -> Option - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:331:28 - | -331 | fn position

(&mut self, mut predicate: P) -> Option where - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:353:29 - | -353 | fn rposition

(&mut self, mut predicate: P) -> Option where - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:372:48 - | -372 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:392:26 - | -392 | fn next_back(&mut self) -> Option<$elem> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:407:25 - | -407 | fn nth_back(&mut self, n: usize) -> Option<$elem> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:424:32 - | -424 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:440:38 - | -440 | unsafe fn next_unchecked(&mut self) -> $elem { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:134:1 - | -134 | / iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, { -135 | | fn is_sorted_by(self, mut compare: F) -> bool -136 | | where -137 | | Self: Sized, -... | -141 | | } -142 | | }} - | |__- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:147:14 - | -147 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:155:15 - | -155 | fn as_ref(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:201:12 - | -201 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:307:21 - | -307 | pub fn as_slice(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:345:25 - | -345 | pub fn as_mut_slice(&mut self) -> &mut [T] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:356:15 - | -356 | fn as_ref(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:80:43 - | -80 | unsafe fn next_back_unchecked(&mut self) -> $elem { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:88:27 - | -88 | fn make_slice(&self) -> &'a [T] { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:99:38 - | -99 | unsafe fn post_inc_start(&mut self, offset: usize) -> NonNull { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:118:35 - | -118 | unsafe fn pre_dec_end(&mut self, offset: usize) -> NonNull { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:141:20 - | -141 | fn len(&self) -> usize { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:146:25 - | -146 | fn is_empty(&self) -> bool { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:156:21 - | -156 | fn next(&mut self) -> Option<$elem> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:171:26 - | -171 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:182:20 - | -182 | fn nth(&mut self, n: usize) -> Option<$elem> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:199:27 - | -199 | fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:262:23 - | -262 | fn all(&mut self, mut f: F) -> bool - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:279:23 - | -279 | fn any(&mut self, mut f: F) -> bool - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:296:24 - | -296 | fn find

(&mut self, mut predicate: P) -> Option - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:313:31 - | -313 | fn find_map(&mut self, mut f: F) -> Option - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:331:28 - | -331 | fn position

(&mut self, mut predicate: P) -> Option where - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:353:29 - | -353 | fn rposition

(&mut self, mut predicate: P) -> Option where - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:372:48 - | -372 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:392:26 - | -392 | fn next_back(&mut self) -> Option<$elem> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:407:25 - | -407 | fn nth_back(&mut self, n: usize) -> Option<$elem> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:424:32 - | -424 | fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:440:38 - | -440 | unsafe fn next_unchecked(&mut self) -> $elem { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:368:1 - | -368 | iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}} - | ----------------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:425:21 - | -425 | pub fn as_slice(&self) -> &'a [T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:435:12 - | -435 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:446:14 - | -446 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:459:13 - | -459 | fn next(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:479:18 - | -479 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:496:18 - | -496 | fn next_back(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:521:15 - | -521 | fn finish(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:576:12 - | -576 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:590:14 - | -590 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:603:13 - | -603 | fn next(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:619:18 - | -619 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:637:18 - | -637 | fn next_back(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:696:12 - | -696 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:706:15 - | -706 | fn finish(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:724:13 - | -724 | fn next(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:745:18 - | -745 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:762:18 - | -762 | fn next_back(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:826:12 - | -826 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:842:13 - | -842 | fn next(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:863:18 - | -863 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:881:18 - | -881 | fn next_back(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:950:12 - | -950 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:964:14 - | -964 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:977:13 - | -977 | fn next(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:982:18 - | -982 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:993:18 - | -993 | fn next_back(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1004:15 - | -1004 | fn finish(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1047:12 - | -1047 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1061:15 - | -1061 | fn finish(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1074:13 - | -1074 | fn next(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1079:18 - | -1079 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1090:18 - | -1090 | fn next_back(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1101:10 - | -1101 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1111:13 - | -1111 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1126:18 - | -1126 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1173:12 - | -1173 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1217:12 - | -1217 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1257:12 - | -1257 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1298:12 - | -1298 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:474:21 - | -474 | fn next(&mut self) -> Option<$iter_of> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1303:1 - | -1303 | forward_iterator! { SplitN: T, &'a [T] } - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:479:26 - | -479 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1303:1 - | -1303 | forward_iterator! { SplitN: T, &'a [T] } - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:474:21 - | -474 | fn next(&mut self) -> Option<$iter_of> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1304:1 - | -1304 | forward_iterator! { RSplitN: T, &'a [T] } - | ----------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:479:26 - | -479 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1304:1 - | -1304 | forward_iterator! { RSplitN: T, &'a [T] } - | ----------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:474:21 - | -474 | fn next(&mut self) -> Option<$iter_of> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1305:1 - | -1305 | forward_iterator! { SplitNMut: T, &'a mut [T] } - | ----------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:479:26 - | -479 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1305:1 - | -1305 | forward_iterator! { SplitNMut: T, &'a mut [T] } - | ----------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `forward_iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:474:21 - | -474 | fn next(&mut self) -> Option<$iter_of> { - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1306:1 - | -1306 | forward_iterator! { RSplitNMut: T, &'a mut [T] } - | ------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter/macros.rs:479:26 - | -479 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1306:1 - | -1306 | forward_iterator! { RSplitNMut: T, &'a mut [T] } - | ------------------------------------------------ in this macro invocation - | - = note: this error originates in the macro `forward_iterator` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1325:10 - | -1325 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1343:14 - | -1343 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1353:13 - | -1353 | fn next(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1364:18 - | -1364 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1379:12 - | -1379 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1401:40 - | -1401 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1413:18 - | -1413 | fn next_back(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1424:17 - | -1424 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1477:10 - | -1477 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1495:14 - | -1495 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1505:13 - | -1505 | fn next(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1517:18 - | -1517 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1534:12 - | -1534 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1560:40 - | -1560 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1579:18 - | -1579 | fn next_back(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1606:17 - | -1606 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1660:10 - | -1660 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1687:13 - | -1687 | fn next(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1701:18 - | -1701 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1718:12 - | -1718 | fn nth(&mut self, n: usize) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1749:40 - | -1749 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1767:18 - | -1767 | fn next_back(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1783:17 - | -1783 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1852:10 - | -1852 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1890:22 - | -1890 | pub fn remainder(&self) -> &'a [T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1898:14 - | -1898 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1908:13 - | -1908 | fn next(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1919:18 - | -1919 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1930:12 - | -1930 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1947:40 - | -1947 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1957:18 - | -1957 | fn next_back(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1968:17 - | -1968 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:1985:17 - | -1985 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2025:10 - | -2025 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2066:13 - | -2066 | fn next(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2079:18 - | -2079 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2090:12 - | -2090 | fn nth(&mut self, n: usize) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2108:40 - | -2108 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2118:18 - | -2118 | fn next_back(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2131:17 - | -2131 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2152:17 - | -2152 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2199:10 - | -2199 | #[derive(Debug, Clone, Copy)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2199:17 - | -2199 | #[derive(Debug, Clone, Copy)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2221:13 - | -2221 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2237:18 - | -2237 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2247:12 - | -2247 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2271:18 - | -2271 | fn next_back(&mut self) -> Option<&'a [T; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2282:17 - | -2282 | fn nth_back(&mut self, n: usize) -> Option<&'a [T; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2296:17 - | -2296 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2325:10 - | -2325 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2345:22 - | -2345 | pub fn remainder(&self) -> &'a [T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2353:14 - | -2353 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2363:13 - | -2363 | fn next(&mut self) -> Option<&'a [T; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2368:18 - | -2368 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2378:12 - | -2378 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2387:40 - | -2387 | unsafe fn __iterator_get_unchecked(&mut self, i: usize) -> &'a [T; N] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2397:18 - | -2397 | fn next_back(&mut self) -> Option<&'a [T; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2402:17 - | -2402 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2409:17 - | -2409 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2451:10 - | -2451 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2481:13 - | -2481 | fn next(&mut self) -> Option<&'a mut [T; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2486:18 - | -2486 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2496:12 - | -2496 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2505:40 - | -2505 | unsafe fn __iterator_get_unchecked(&mut self, i: usize) -> &'a mut [T; N] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2515:18 - | -2515 | fn next_back(&mut self) -> Option<&'a mut [T; N]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2520:17 - | -2520 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2527:17 - | -2527 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2569:10 - | -2569 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2587:14 - | -2587 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2597:13 - | -2597 | fn next(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2615:18 - | -2615 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2632:12 - | -2632 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2661:40 - | -2661 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2675:18 - | -2675 | fn next_back(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2689:17 - | -2689 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2742:10 - | -2742 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2769:13 - | -2769 | fn next(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2788:18 - | -2788 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2805:12 - | -2805 | fn nth(&mut self, n: usize) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2841:40 - | -2841 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2856:18 - | -2856 | fn next_back(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2871:17 - | -2871 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2939:10 - | -2939 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2976:22 - | -2976 | pub fn remainder(&self) -> &'a [T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2984:14 - | -2984 | fn clone(&self) -> RChunksExact<'a, T> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:2994:13 - | -2994 | fn next(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3005:18 - | -3005 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3016:12 - | -3016 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3033:40 - | -3033 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3044:18 - | -3044 | fn next_back(&mut self) -> Option<&'a [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3055:17 - | -3055 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3075:17 - | -3075 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3115:10 - | -3115 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3154:13 - | -3154 | fn next(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3168:18 - | -3168 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3179:12 - | -3179 | fn nth(&mut self, n: usize) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3198:40 - | -3198 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> Self::Item { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3209:18 - | -3209 | fn next_back(&mut self) -> Option<&'a mut [T]> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3222:17 - | -3222 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3246:17 - | -3246 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3321:13 - | -3321 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3337:18 - | -3337 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3353:18 - | -3353 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3374:12 - | -3374 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3408:13 - | -3408 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3425:18 - | -3425 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3441:18 - | -3441 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/iter.rs:3463:12 - | -3463 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/specialize.rs:6:26 - | -6 | default fn spec_fill(&mut self, value: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/slice/specialize.rs:18:18 - | -18 | fn spec_fill(&mut self, value: T) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:139:22 - | -139 | pub const fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:158:27 - | -158 | pub const fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:188:29 - | -188 | pub fn is_char_boundary(&self, index: usize) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:235:32 - | -235 | pub fn floor_char_boundary(&self, index: usize) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:273:31 - | -273 | pub fn ceil_char_boundary(&self, index: usize) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:299:27 - | -299 | pub const fn as_bytes(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:343:32 - | -343 | pub unsafe fn as_bytes_mut(&mut self) -> &mut [u8] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:373:25 - | -373 | pub const fn as_ptr(&self) -> *const u8 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:389:23 - | -389 | pub fn as_mut_ptr(&mut self) -> *mut u8 { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:414:36 - | -414 | pub fn get>(&self, i: I) -> Option<&I::Output> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:446:40 - | -446 | pub fn get_mut>(&mut self, i: I) -> Option<&mut I::Output> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:478:53 - | -478 | pub unsafe fn get_unchecked>(&self, i: I) -> &I::Output { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:513:57 - | -513 | pub unsafe fn get_unchecked_mut>(&mut self, i: I) -> &mut I::Output { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:564:35 - | -564 | pub unsafe fn slice_unchecked(&self, begin: usize, end: usize) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:598:39 - | -598 | pub unsafe fn slice_mut_unchecked(&mut self, begin: usize, end: usize) -> &mut str { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:637:21 - | -637 | pub fn split_at(&self, mid: usize) -> (&str, &str) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:677:25 - | -677 | pub fn split_at_mut(&mut self, mid: usize) -> (&mut str, &mut str) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:716:29 - | -716 | pub fn split_at_checked(&self, mid: usize) -> Option<(&str, &str)> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:756:33 - | -756 | pub fn split_at_mut_checked(&mut self, mid: usize) -> Option<(&mut str, &mut str)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:772:38 - | -772 | unsafe fn split_at_mut_unchecked(&mut self, mid: usize) -> (&mut str, &mut str) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:833:18 - | -833 | pub fn chars(&self) -> Chars<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:890:25 - | -890 | pub fn char_indices(&self) -> CharIndices<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:913:18 - | -913 | pub fn bytes(&self) -> Bytes<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:965:29 - | -965 | pub fn split_whitespace(&self) -> SplitWhitespace<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1014:35 - | -1014 | pub fn split_ascii_whitespace(&self) -> SplitAsciiWhitespace<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1067:18 - | -1067 | pub fn lines(&self) -> Lines<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1076:22 - | -1076 | pub fn lines_any(&self) -> LinesAny<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1095:25 - | -1095 | pub fn encode_utf16(&self) -> EncodeUtf16<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1120:33 - | -1120 | pub fn contains(&self, pat: P) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1157:36 - | -1157 | pub fn starts_with(&self, pat: P) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1181:34 - | -1181 | pub fn ends_with(&self, pat: P) -> bool - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1232:29 - | -1232 | pub fn find(&self, pat: P) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1278:30 - | -1278 | pub fn rfind(&self, pat: P) -> Option - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1400:30 - | -1400 | pub fn split(&self, pat: P) -> Split<'_, P> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1441:40 - | -1441 | pub fn split_inclusive(&self, pat: P) -> SplitInclusive<'_, P> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1496:31 - | -1496 | pub fn rsplit(&self, pat: P) -> RSplit<'_, P> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1545:41 - | -1545 | pub fn split_terminator(&self, pat: P) -> SplitTerminator<'_, P> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1591:42 - | -1591 | pub fn rsplit_terminator(&self, pat: P) -> RSplitTerminator<'_, P> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1646:31 - | -1646 | pub fn splitn(&self, n: usize, pat: P) -> SplitN<'_, P> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1695:32 - | -1695 | pub fn rsplitn(&self, n: usize, pat: P) -> RSplitN<'_, P> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1715:35 - | -1715 | pub fn split_once(&self, delimiter: P) -> Option<(&'_ str, &'_ str)> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1733:36 - | -1733 | pub fn rsplit_once(&self, delimiter: P) -> Option<(&'_ str, &'_ str)> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1773:32 - | -1773 | pub fn matches(&self, pat: P) -> Matches<'_, P> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1807:33 - | -1807 | pub fn rmatches(&self, pat: P) -> RMatches<'_, P> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1851:38 - | -1851 | pub fn match_indices(&self, pat: P) -> MatchIndices<'_, P> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1891:39 - | -1891 | pub fn rmatch_indices(&self, pat: P) -> RMatchIndices<'_, P> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1915:17 - | -1915 | pub fn trim(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1954:23 - | -1954 | pub fn trim_start(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:1993:21 - | -1993 | pub fn trim_end(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2033:22 - | -2033 | pub fn trim_left(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2073:23 - | -2073 | pub fn trim_right(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2106:37 - | -2106 | pub fn trim_matches(&self, pat: P) -> &str - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2153:43 - | -2153 | pub fn trim_start_matches(&self, pat: P) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2186:37 - | -2186 | pub fn strip_prefix(&self, prefix: P) -> Option<&str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2213:37 - | -2213 | pub fn strip_suffix(&self, suffix: P) -> Option<&str> - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2256:41 - | -2256 | pub fn trim_end_matches(&self, pat: P) -> &str - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2300:42 - | -2300 | pub fn trim_left_matches(&self, pat: P) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2343:43 - | -2343 | pub fn trim_right_matches(&self, pat: P) -> &str - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2395:30 - | -2395 | pub fn parse(&self) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2414:27 - | -2414 | pub const fn is_ascii(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2426:27 - | -2426 | pub const fn as_ascii(&self) -> Option<&[ascii::Char]> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2446:33 - | -2446 | pub fn eq_ignore_ascii_case(&self, other: &str) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2471:33 - | -2471 | pub fn make_ascii_uppercase(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2498:33 - | -2498 | pub fn make_ascii_lowercase(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2523:35 - | -2523 | pub const fn trim_ascii_start(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2548:33 - | -2548 | pub const fn trim_ascii_end(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2574:29 - | -2574 | pub const fn trim_ascii(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2617:25 - | -2617 | pub fn escape_debug(&self) -> EscapeDebug<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2663:27 - | -2663 | pub fn escape_default(&self) -> EscapeDefault<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2701:27 - | -2701 | pub fn escape_unicode(&self) -> EscapeUnicode<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2734:25 - | -2734 | pub fn substr_range(&self, substr: &str) -> Option> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2742:15 - | -2742 | fn as_ref(&self) -> &[u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2768:14 - | -2768 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:97:44 - | -97 | extern "rust-call" fn call(&self, ($( $arg, )*): ($( $ArgTy, )*)) -> $ReturnTy { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2766:1 - | -2766 | / impl_fn_for_zst! { -2767 | | /// A nameable, cloneable fn type -2768 | | #[derive(Clone)] -2769 | | struct LinesMap impl<'a> Fn = |line: &'a str| -> &'a str { -... | -2817 | | }; -2818 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `impl_fn_for_zst` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/internal_macros.rs:105:21 - | -105 | &mut self, - | ^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2766:1 - | -2766 | / impl_fn_for_zst! { -2767 | | /// A nameable, cloneable fn type -2768 | | #[derive(Clone)] -2769 | | struct LinesMap impl<'a> Fn = |line: &'a str| -> &'a str { -... | -2817 | | }; -2818 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `impl_fn_for_zst` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2775:14 - | -2775 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2784:14 - | -2784 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2788:14 - | -2788 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2793:14 - | -2793 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2798:14 - | -2798 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2803:14 - | -2803 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2808:14 - | -2808 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/mod.rs:2813:14 - | -2813 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:45:16 - | -45 | #[derive(Copy, Eq, PartialEq, Clone, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:45:20 - | -45 | #[derive(Copy, Eq, PartialEq, Clone, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:45:31 - | -45 | #[derive(Copy, Eq, PartialEq, Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:45:38 - | -45 | #[derive(Copy, Eq, PartialEq, Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:79:30 - | -79 | pub const fn valid_up_to(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:102:28 - | -102 | pub const fn error_len(&self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:113:12 - | -113 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:129:20 - | -129 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:137:10 - | -137 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:137:17 - | -137 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:137:24 - | -137 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:137:35 - | -137 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:144:12 - | -144 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/error.rs:152:20 - | -152 | fn description(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:27:10 - | -27 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:39:13 - | -39 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:51:19 - | -51 | fn advance_by(&mut self, mut remainder: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:100:18 - | -100 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:117:12 - | -117 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:128:18 - | -128 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:159:19 - | -159 | pub fn as_str(&self) -> &'a str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:172:10 - | -172 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:172:17 - | -172 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:185:13 - | -185 | fn next(&mut self) -> Option<(usize, char)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:204:18 - | -204 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:218:18 - | -218 | fn next_back(&mut self) -> Option<(usize, char)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:237:19 - | -237 | pub fn as_str(&self) -> &'a str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:273:19 - | -273 | pub fn offset(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:286:10 - | -286 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:286:17 - | -286 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:294:13 - | -294 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:299:18 - | -299 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:314:12 - | -314 | fn nth(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:319:15 - | -319 | fn all(&mut self, f: F) -> bool - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:327:15 - | -327 | fn any(&mut self, f: F) -> bool - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:335:16 - | -335 | fn find

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:343:20 - | -343 | fn position

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:351:21 - | -351 | fn rposition

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:359:40 - | -359 | unsafe fn __iterator_get_unchecked(&mut self, idx: usize) -> u8 { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:369:18 - | -369 | fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:374:17 - | -374 | fn nth_back(&mut self, n: usize) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:379:17 - | -379 | fn rfind

(&mut self, predicate: P) -> Option - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:390:12 - | -390 | fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:395:17 - | -395 | fn is_empty(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:424:22 - | -424 | fn clone(&self) -> Self { - | ^^^^^ -... -615 | / derive_pattern_clone! { -616 | | clone SplitInternal -617 | | with |s| SplitInternal { matcher: s.matcher.clone(), ..*s } -618 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `derive_pattern_clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:632:12 - | -632 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:645:16 - | -645 | fn get_end(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:660:13 - | -660 | fn next(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:678:23 - | -678 | fn next_inclusive(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:698:18 - | -698 | fn next_back(&mut self) -> Option<&'a str> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:735:28 - | -735 | fn next_back_inclusive(&mut self) -> Option<&'a str> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:778:18 - | -778 | fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:502:20 - | -502 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -789 | / generate_pattern_iterators! { -790 | | forward: -791 | | /// Created with the method [`split`]. -792 | | /// -... | -804 | | delegate double ended; -805 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:514:21 - | -514 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -789 | / generate_pattern_iterators! { -790 | | forward: -791 | | /// Created with the method [`split`]. -792 | | /// -... | -804 | | delegate double ended; -805 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:524:22 - | -524 | fn clone(&self) -> Self { - | ^^^^^ -... -789 | / generate_pattern_iterators! { -790 | | forward: -791 | | /// Created with the method [`split`]. -792 | | /// -... | -804 | | delegate double ended; -805 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:538:20 - | -538 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -789 | / generate_pattern_iterators! { -790 | | forward: -791 | | /// Created with the method [`split`]. -792 | | /// -... | -804 | | delegate double ended; -805 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:553:21 - | -553 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -789 | / generate_pattern_iterators! { -790 | | forward: -791 | | /// Created with the method [`split`]. -792 | | /// -... | -804 | | delegate double ended; -805 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:563:22 - | -563 | fn clone(&self) -> Self { - | ^^^^^ -... -789 | / generate_pattern_iterators! { -790 | | forward: -791 | | /// Created with the method [`split`]. -792 | | /// -... | -804 | | delegate double ended; -805 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:592:26 - | -592 | fn next_back(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -789 | / generate_pattern_iterators! { -790 | | forward: -791 | | /// Created with the method [`split`]. -792 | | /// -... | -804 | | delegate double ended; -805 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:603:26 - | -603 | fn next_back(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -789 | / generate_pattern_iterators! { -790 | | forward: -791 | | /// Created with the method [`split`]. -792 | | /// -... | -804 | | delegate double ended; -805 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:825:22 - | -825 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:848:22 - | -848 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:502:20 - | -502 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -853 | / generate_pattern_iterators! { -854 | | forward: -855 | | /// Created with the method [`split_terminator`]. -856 | | /// -... | -868 | | delegate double ended; -869 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:514:21 - | -514 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -853 | / generate_pattern_iterators! { -854 | | forward: -855 | | /// Created with the method [`split_terminator`]. -856 | | /// -... | -868 | | delegate double ended; -869 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:524:22 - | -524 | fn clone(&self) -> Self { - | ^^^^^ -... -853 | / generate_pattern_iterators! { -854 | | forward: -855 | | /// Created with the method [`split_terminator`]. -856 | | /// -... | -868 | | delegate double ended; -869 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:538:20 - | -538 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -853 | / generate_pattern_iterators! { -854 | | forward: -855 | | /// Created with the method [`split_terminator`]. -856 | | /// -... | -868 | | delegate double ended; -869 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:553:21 - | -553 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -853 | / generate_pattern_iterators! { -854 | | forward: -855 | | /// Created with the method [`split_terminator`]. -856 | | /// -... | -868 | | delegate double ended; -869 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:563:22 - | -563 | fn clone(&self) -> Self { - | ^^^^^ -... -853 | / generate_pattern_iterators! { -854 | | forward: -855 | | /// Created with the method [`split_terminator`]. -856 | | /// -... | -868 | | delegate double ended; -869 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:592:26 - | -592 | fn next_back(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -853 | / generate_pattern_iterators! { -854 | | forward: -855 | | /// Created with the method [`split_terminator`]. -856 | | /// -... | -868 | | delegate double ended; -869 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:603:26 - | -603 | fn next_back(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -853 | / generate_pattern_iterators! { -854 | | forward: -855 | | /// Created with the method [`split_terminator`]. -856 | | /// -... | -868 | | delegate double ended; -869 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:889:22 - | -889 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:912:22 - | -912 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:424:22 - | -424 | fn clone(&self) -> Self { - | ^^^^^ -... -917 | / derive_pattern_clone! { -918 | | clone SplitNInternal -919 | | with |s| SplitNInternal { iter: s.iter.clone(), ..*s } -920 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `derive_pattern_clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:932:12 - | -932 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:942:13 - | -942 | fn next(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:957:18 - | -957 | fn next_back(&mut self) -> Option<&'a str> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:975:18 - | -975 | fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:502:20 - | -502 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -980 | / generate_pattern_iterators! { -981 | | forward: -982 | | /// Created with the method [`splitn`]. -983 | | /// -... | -995 | | delegate single ended; -996 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:514:21 - | -514 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -980 | / generate_pattern_iterators! { -981 | | forward: -982 | | /// Created with the method [`splitn`]. -983 | | /// -... | -995 | | delegate single ended; -996 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:524:22 - | -524 | fn clone(&self) -> Self { - | ^^^^^ -... -980 | / generate_pattern_iterators! { -981 | | forward: -982 | | /// Created with the method [`splitn`]. -983 | | /// -... | -995 | | delegate single ended; -996 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:538:20 - | -538 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -980 | / generate_pattern_iterators! { -981 | | forward: -982 | | /// Created with the method [`splitn`]. -983 | | /// -... | -995 | | delegate single ended; -996 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:553:21 - | -553 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -980 | / generate_pattern_iterators! { -981 | | forward: -982 | | /// Created with the method [`splitn`]. -983 | | /// -... | -995 | | delegate single ended; -996 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:563:22 - | -563 | fn clone(&self) -> Self { - | ^^^^^ -... -980 | / generate_pattern_iterators! { -981 | | forward: -982 | | /// Created with the method [`splitn`]. -983 | | /// -... | -995 | | delegate single ended; -996 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1016:22 - | -1016 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1039:22 - | -1039 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:424:22 - | -424 | fn clone(&self) -> Self { - | ^^^^^ -... -1044 | / derive_pattern_clone! { -1045 | | clone MatchIndicesInternal -1046 | | with |s| MatchIndicesInternal(s.0.clone()) -1047 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `derive_pattern_clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1055:12 - | -1055 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1062:13 - | -1062 | fn next(&mut self) -> Option<(usize, &'a str)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1070:18 - | -1070 | fn next_back(&mut self) -> Option<(usize, &'a str)> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:502:20 - | -502 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -1081 | / generate_pattern_iterators! { -1082 | | forward: -1083 | | /// Created with the method [`match_indices`]. -1084 | | /// -... | -1096 | | delegate double ended; -1097 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:514:21 - | -514 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -1081 | / generate_pattern_iterators! { -1082 | | forward: -1083 | | /// Created with the method [`match_indices`]. -1084 | | /// -... | -1096 | | delegate double ended; -1097 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:524:22 - | -524 | fn clone(&self) -> Self { - | ^^^^^ -... -1081 | / generate_pattern_iterators! { -1082 | | forward: -1083 | | /// Created with the method [`match_indices`]. -1084 | | /// -... | -1096 | | delegate double ended; -1097 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:538:20 - | -538 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -1081 | / generate_pattern_iterators! { -1082 | | forward: -1083 | | /// Created with the method [`match_indices`]. -1084 | | /// -... | -1096 | | delegate double ended; -1097 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:553:21 - | -553 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -1081 | / generate_pattern_iterators! { -1082 | | forward: -1083 | | /// Created with the method [`match_indices`]. -1084 | | /// -... | -1096 | | delegate double ended; -1097 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:563:22 - | -563 | fn clone(&self) -> Self { - | ^^^^^ -... -1081 | / generate_pattern_iterators! { -1082 | | forward: -1083 | | /// Created with the method [`match_indices`]. -1084 | | /// -... | -1096 | | delegate double ended; -1097 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:592:26 - | -592 | fn next_back(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -1081 | / generate_pattern_iterators! { -1082 | | forward: -1083 | | /// Created with the method [`match_indices`]. -1084 | | /// -... | -1096 | | delegate double ended; -1097 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:603:26 - | -603 | fn next_back(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -1081 | / generate_pattern_iterators! { -1082 | | forward: -1083 | | /// Created with the method [`match_indices`]. -1084 | | /// -... | -1096 | | delegate double ended; -1097 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:424:22 - | -424 | fn clone(&self) -> Self { - | ^^^^^ -... -1099 | / derive_pattern_clone! { -1100 | | clone MatchesInternal -1101 | | with |s| MatchesInternal(s.0.clone()) -1102 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `derive_pattern_clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1110:12 - | -1110 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1117:13 - | -1117 | fn next(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1126:18 - | -1126 | fn next_back(&mut self) -> Option<&'a str> - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:502:20 - | -502 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -1138 | / generate_pattern_iterators! { -1139 | | forward: -1140 | | /// Created with the method [`matches`]. -1141 | | /// -... | -1153 | | delegate double ended; -1154 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:514:21 - | -514 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -1138 | / generate_pattern_iterators! { -1139 | | forward: -1140 | | /// Created with the method [`matches`]. -1141 | | /// -... | -1153 | | delegate double ended; -1154 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:524:22 - | -524 | fn clone(&self) -> Self { - | ^^^^^ -... -1138 | / generate_pattern_iterators! { -1139 | | forward: -1140 | | /// Created with the method [`matches`]. -1141 | | /// -... | -1153 | | delegate double ended; -1154 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:538:20 - | -538 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -1138 | / generate_pattern_iterators! { -1139 | | forward: -1140 | | /// Created with the method [`matches`]. -1141 | | /// -... | -1153 | | delegate double ended; -1154 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:553:21 - | -553 | fn next(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -1138 | / generate_pattern_iterators! { -1139 | | forward: -1140 | | /// Created with the method [`matches`]. -1141 | | /// -... | -1153 | | delegate double ended; -1154 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:563:22 - | -563 | fn clone(&self) -> Self { - | ^^^^^ -... -1138 | / generate_pattern_iterators! { -1139 | | forward: -1140 | | /// Created with the method [`matches`]. -1141 | | /// -... | -1153 | | delegate double ended; -1154 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:592:26 - | -592 | fn next_back(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -1138 | / generate_pattern_iterators! { -1139 | | forward: -1140 | | /// Created with the method [`matches`]. -1141 | | /// -... | -1153 | | delegate double ended; -1154 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:603:26 - | -603 | fn next_back(&mut self) -> Option<$iterty> { - | ^^^^^^^^^ -... -1138 | / generate_pattern_iterators! { -1139 | | forward: -1140 | | /// Created with the method [`matches`]. -1141 | | /// -... | -1153 | | delegate double ended; -1154 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `generate_pattern_iterators` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1164:10 - | -1164 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1164:17 - | -1164 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1172:13 - | -1172 | fn next(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1177:18 - | -1177 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1190:18 - | -1190 | fn next_back(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1218:22 - | -1218 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1229:10 - | -1229 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1229:17 - | -1229 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1239:13 - | -1239 | fn next(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1244:18 - | -1244 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1253:18 - | -1253 | fn next_back(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1270:10 - | -1270 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1270:17 - | -1270 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1283:10 - | -1283 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1283:17 - | -1283 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1306:13 - | -1306 | fn next(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1311:18 - | -1311 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1324:18 - | -1324 | fn next_back(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1352:22 - | -1352 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1362:13 - | -1362 | fn next(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1367:18 - | -1367 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1380:18 - | -1380 | fn next_back(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1410:22 - | -1410 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1425:13 - | -1425 | fn next(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1432:12 - | -1432 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1440:14 - | -1440 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1450:18 - | -1450 | fn next_back(&mut self) -> Option<&'a str> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1476:22 - | -1476 | pub fn remainder(&self) -> Option<&'a str> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1487:10 - | -1487 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1496:12 - | -1496 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1506:13 - | -1506 | fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1524:18 - | -1524 | fn size_hint(&self) -> (usize, Option) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1549:10 - | -1549 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1549:17 - | -1549 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1559:10 - | -1559 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1559:17 - | -1559 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1566:10 - | -1566 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1566:17 - | -1566 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1575:20 - | -1575 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ -... -1610 | escape_types_impls!(EscapeDebug, EscapeDefault, EscapeUnicode); - | -------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `escape_types_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1585:21 - | -1585 | fn next(&mut self) -> Option { self.inner.next() } - | ^^^^^^^^^ -... -1610 | escape_types_impls!(EscapeDebug, EscapeDefault, EscapeUnicode); - | -------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `escape_types_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1588:26 - | -1588 | fn size_hint(&self) -> (usize, Option) { self.inner.size_hint() } - | ^^^^^ -... -1610 | escape_types_impls!(EscapeDebug, EscapeDefault, EscapeUnicode); - | -------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `escape_types_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/iter.rs:1591:39 - | -1591 | fn try_fold(&mut self, init: Acc, fold: Fold) -> R where - | ^^^^^^^^^ -... -1610 | escape_types_impls!(EscapeDebug, EscapeDefault, EscapeUnicode); - | -------------------------------------------------------------- in this macro invocation - | - = note: this error originates in the macro `escape_types_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/traits.rs:20:12 - | -20 | fn cmp(&self, other: &str) -> Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/traits.rs:28:11 - | -28 | fn eq(&self, other: &str) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/traits.rs:46:20 - | -46 | fn partial_cmp(&self, other: &str) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/traits.rs:59:14 - | -59 | fn index(&self, index: I) -> &I::Output { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/traits.rs:70:18 - | -70 | fn index_mut(&mut self, index: I) -> &mut I::Output { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:168:16 - | -168 | #[derive(Copy, Clone, Eq, PartialEq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:168:23 - | -168 | #[derive(Copy, Clone, Eq, PartialEq, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:168:27 - | -168 | #[derive(Copy, Clone, Eq, PartialEq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:168:38 - | -168 | #[derive(Copy, Clone, Eq, PartialEq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:352:10 - | -352 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:352:17 - | -352 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:379:18 - | -379 | fn utf8_size(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:386:17 - | -386 | fn haystack(&self) -> &'a str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:390:13 - | -390 | fn next(&mut self) -> SearchStep { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:417:19 - | -417 | fn next_match(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:464:18 - | -464 | fn next_back(&mut self) -> SearchStep { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:484:24 - | -484 | fn next_match_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:618:16 - | -618 | fn matches(&mut self, c: char) -> bool { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:625:16 - | -625 | fn matches(&mut self, c: char) -> bool { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:632:16 - | -632 | fn matches(&mut self, c: char) -> bool { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:639:16 - | -639 | fn matches(&mut self, c: char) -> bool { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:646:10 - | -646 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:646:17 - | -646 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:664:17 - | -664 | fn haystack(&self) -> &'a str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:669:13 - | -669 | fn next(&mut self) -> SearchStep { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:689:18 - | -689 | fn next_back(&mut self) -> SearchStep { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:789:10 - | -789 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:789:17 - | -789 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:795:10 - | -795 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:795:17 - | -795 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:756:21 - | -756 | fn haystack(&self) -> &'a str { - | ^^^^^ -... -813 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:760:17 - | -760 | fn next(&mut self) -> SearchStep { - | ^^^^^^^^^ -... -813 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:764:23 - | -764 | fn next_match(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -813 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:768:24 - | -768 | fn next_reject(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -813 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:774:22 - | -774 | fn next_back(&mut self) -> SearchStep { - | ^^^^^^^^^ -... -817 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:778:28 - | -778 | fn next_match_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -817 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:782:29 - | -782 | fn next_reject_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -817 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:756:21 - | -756 | fn haystack(&self) -> &'a str { - | ^^^^^ -... -835 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:760:17 - | -760 | fn next(&mut self) -> SearchStep { - | ^^^^^^^^^ -... -835 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:764:23 - | -764 | fn next_match(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -835 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:768:24 - | -768 | fn next_reject(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -835 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:774:22 - | -774 | fn next_back(&mut self) -> SearchStep { - | ^^^^^^^^^ -... -839 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:778:28 - | -778 | fn next_match_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -839 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:782:29 - | -782 | fn next_reject_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -839 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:851:10 - | -851 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:851:17 - | -851 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:756:21 - | -756 | fn haystack(&self) -> &'a str { - | ^^^^^ -... -855 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:760:17 - | -760 | fn next(&mut self) -> SearchStep { - | ^^^^^^^^^ -... -855 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:764:23 - | -764 | fn next_match(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -855 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:768:24 - | -768 | fn next_reject(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -855 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:774:22 - | -774 | fn next_back(&mut self) -> SearchStep { - | ^^^^^^^^^ -... -859 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:778:28 - | -778 | fn next_match_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -859 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:782:29 - | -782 | fn next_reject_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -859 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:881:10 - | -881 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:890:12 - | -890 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:756:21 - | -756 | fn haystack(&self) -> &'a str { - | ^^^^^ -... -901 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:760:17 - | -760 | fn next(&mut self) -> SearchStep { - | ^^^^^^^^^ -... -901 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:764:23 - | -764 | fn next_match(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -901 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:768:24 - | -768 | fn next_reject(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -901 | searcher_methods!(forward); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:774:22 - | -774 | fn next_back(&mut self) -> SearchStep { - | ^^^^^^^^^ -... -908 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:778:28 - | -778 | fn next_match_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -908 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:782:29 - | -782 | fn next_reject_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ -... -908 | searcher_methods!(reverse); - | -------------------------- in this macro invocation - | - = note: this error originates in the macro `searcher_methods` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1031:10 - | -1031 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1031:17 - | -1031 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1040:10 - | -1040 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1040:17 - | -1040 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1046:10 - | -1046 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1046:17 - | -1046 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1085:17 - | -1085 | fn haystack(&self) -> &'a str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1090:13 - | -1090 | fn next(&mut self) -> SearchStep { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1142:19 - | -1142 | fn next_match(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1175:18 - | -1175 | fn next_back(&mut self) -> SearchStep { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1221:24 - | -1221 | fn next_match_back(&mut self) -> Option<(usize, usize)> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1252:10 - | -1252 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1252:17 - | -1252 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1422:25 - | -1422 | fn byteset_contains(&self, byte: u8) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1432:16 - | -1432 | fn next(&mut self, haystack: &[u8], needle: &[u8], long_period: bool) -> S::Output - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/pattern.rs:1515:21 - | -1515 | fn next_back(&mut self, haystack: &[u8], needle: &[u8], long_period: bool) -> S::Output - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:42:24 - | -42 | pub fn utf8_chunks(&self) -> Utf8Chunks<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:68:10 - | -68 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:68:17 - | -68 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:68:24 - | -68 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:68:35 - | -68 | #[derive(Clone, Debug, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:81:18 - | -81 | pub fn valid(&self) -> &'a str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:101:20 - | -101 | pub fn invalid(&self) -> &'a [u8] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:112:12 - | -112 | fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:174:10 - | -174 | #[derive(Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:182:18 - | -182 | pub fn debug(&self) -> Debug<'_> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:191:13 - | -191 | fn next(&mut self) -> Option> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/str/lossy.rs:291:12 - | -291 | fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:40:10 - | -40 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:40:23 - | -40 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:40:34 - | -40 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:40:38 - | -40 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:40:50 - | -40 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:40:55 - | -40 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:96:10 - | -96 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:96:23 - | -96 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:96:34 - | -96 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:96:38 - | -96 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:96:50 - | -96 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:96:55 - | -96 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:461:26 - | -461 | pub const fn is_zero(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:489:26 - | -489 | pub const fn as_secs(&self) -> u64 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:512:32 - | -512 | pub const fn subsec_millis(&self) -> u32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:535:32 - | -535 | pub const fn subsec_micros(&self) -> u32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:558:31 - | -558 | pub const fn subsec_nanos(&self) -> u32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:576:28 - | -576 | pub const fn as_millis(&self) -> u128 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:594:28 - | -594 | pub const fn as_micros(&self) -> u128 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:612:27 - | -612 | pub const fn as_nanos(&self) -> u128 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:849:30 - | -849 | pub const fn as_secs_f64(&self) -> f64 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:868:30 - | -868 | pub const fn as_secs_f32(&self) -> f32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:888:32 - | -888 | pub const fn as_millis_f64(&self) -> f64 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:909:32 - | -909 | pub const fn as_millis_f32(&self) -> f32 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1130:19 - | -1130 | fn add_assign(&mut self, rhs: Duration) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1148:19 - | -1148 | fn sub_assign(&mut self, rhs: Duration) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1176:19 - | -1176 | fn mul_assign(&mut self, rhs: u32) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1194:19 - | -1194 | fn div_assign(&mut self, rhs: u32) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1241:12 - | -1241 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1445:10 - | -1445 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1445:17 - | -1445 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1445:24 - | -1445 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1445:35 - | -1445 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1452:26 - | -1452 | const fn description(&self) -> &'static str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1466:12 - | -1466 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1471:10 - | -1471 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1471:17 - | -1471 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1471:24 - | -1471 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/time.rs:1471:35 - | -1471 | #[derive(Debug, Clone, PartialEq, Eq)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/mod.rs:50:10 - | -50 | #[derive(Debug, Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/mod.rs:50:23 - | -50 | #[derive(Debug, Copy, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/async_drop.rs:28:12 - | -28 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/async_drop.rs:37:19 - | -37 | fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/async_drop.rs:101:12 - | -101 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/async_drop.rs:111:19 - | -111 | fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/async_drop.rs:184:19 - | -184 | fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/async_drop.rs:269:10 - | -269 | #[derive(Clone, Copy)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/async_drop.rs:280:19 - | -280 | fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/future.rs:110:23 - | -110 | fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/future.rs:122:19 - | -122 | fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/join.rs:162:24 - | -162 | pub fn take_output(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/join.rs:177:23 - | -177 | fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/pending.rs:41:19 - | -41 | fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/pending.rs:48:12 - | -48 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/pending.rs:55:14 - | -55 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/poll_fn.rs:137:12 - | -137 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/poll_fn.rs:149:19 - | -149 | fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/ready.rs:10:10 - | -10 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/ready.rs:10:17 - | -10 | #[derive(Debug, Clone)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/future/ready.rs:22:23 - | -22 | fn poll(mut self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll { - | ^^^^^^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/poll.rs:11:16 - | -11 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/poll.rs:11:23 - | -11 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/poll.rs:11:30 - | -11 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/poll.rs:11:34 - | -11 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/poll.rs:11:45 - | -11 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/poll.rs:11:50 - | -11 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/poll.rs:11:62 - | -11 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/poll.rs:74:27 - | -74 | pub const fn is_ready(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/poll.rs:95:29 - | -95 | pub const fn is_pending(&self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:20:10 - | -20 | #[derive(PartialEq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:20:21 - | -20 | #[derive(PartialEq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:110:10 - | -110 | #[derive(PartialEq, Copy, Clone, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:110:27 - | -110 | #[derive(PartialEq, Copy, Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:110:34 - | -110 | #[derive(PartialEq, Copy, Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:208:10 - | -208 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:249:24 - | -249 | pub const fn waker(&self) -> &'a Waker { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:257:30 - | -257 | pub const fn local_waker(&self) -> &'a LocalWaker { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:265:22 - | -265 | pub const fn ext(&mut self) -> &mut dyn Any { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:277:12 - | -277 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:305:10 - | -305 | #[derive(Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:468:24 - | -468 | pub fn wake_by_ref(&self) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:488:22 - | -488 | pub fn will_wake(&self, other: &Waker) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:587:17 - | -587 | pub fn data(&self) -> *const () { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:595:19 - | -595 | pub fn vtable(&self) -> &'static RawWakerVTable { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:603:14 - | -603 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:649:19 - | -649 | fn clone_from(&mut self, source: &Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:659:13 - | -659 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:669:12 - | -669 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:776:24 - | -776 | pub fn wake_by_ref(&self) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:796:22 - | -796 | pub fn will_wake(&self, other: &LocalWaker) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:885:17 - | -885 | pub fn data(&self) -> *const () { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:893:19 - | -893 | pub fn vtable(&self) -> &'static RawWakerVTable { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:900:14 - | -900 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:910:19 - | -910 | fn clone_from(&mut self, source: &Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:919:15 - | -919 | fn as_ref(&self) -> &LocalWaker { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:928:13 - | -928 | fn drop(&mut self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/task/wake.rs:938:12 - | -938 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:31:16 - | -31 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:31:23 - | -31 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:31:34 - | -31 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:31:38 - | -31 | #[derive(Copy, Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:44:12 - | -44 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:378:17 - | -378 | fn allocate(&self, layout: Layout) -> Result, AllocError> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:383:24 - | -383 | fn allocate_zeroed(&self, layout: Layout) -> Result, AllocError> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:388:26 - | -388 | unsafe fn deallocate(&self, ptr: NonNull, layout: Layout) { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:395:9 - | -395 | &self, - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:406:9 - | -406 | &self, - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/mod.rs:417:9 - | -417 | &self, - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/global.rs:153:21 - | -153 | unsafe fn alloc(&self, layout: Layout) -> *mut u8; - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/global.rs:168:23 - | -168 | unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout); - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/global.rs:190:28 - | -190 | unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/global.rs:259:23 - | -259 | unsafe fn realloc(&self, ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8 { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:40:16 - | -40 | #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:40:23 - | -40 | #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:40:30 - | -40 | #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:40:41 - | -40 | #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:40:45 - | -40 | #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)] - | ^^^^ - | - = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:156:23 - | -156 | pub const fn size(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:169:24 - | -169 | pub const fn align(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:255:27 - | -255 | pub const fn dangling(&self) -> NonNull { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:278:21 - | -278 | pub fn align_to(&self, align: usize) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:304:37 - | -304 | pub const fn padding_needed_for(&self, align: usize) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:344:31 - | -344 | pub const fn pad_to_align(&self) -> Layout { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:380:19 - | -380 | pub fn repeat(&self, n: usize) -> Result<(Self, usize), LayoutError> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:444:19 - | -444 | pub fn extend(&self, next: Self) -> Result<(Self, usize), LayoutError> { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:477:26 - | -477 | pub fn repeat_packed(&self, n: usize) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:493:26 - | -493 | pub fn extend_packed(&self, next: Self) -> Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:555:10 - | -555 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:555:17 - | -555 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:555:28 - | -555 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:555:32 - | -555 | #[derive(Clone, PartialEq, Eq, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/alloc/layout.rs:564:12 - | -564 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/escape.rs:88:10 - | -88 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/escape.rs:88:17 - | -88 | #[derive(Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/escape.rs:119:21 - | -119 | pub fn as_ascii(&self) -> &[ascii::Char] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/escape.rs:127:19 - | -127 | pub fn as_str(&self) -> &str { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/escape.rs:132:16 - | -132 | pub fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/escape.rs:136:17 - | -136 | pub fn next(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/escape.rs:143:22 - | -143 | pub fn next_back(&mut self) -> Option { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/escape.rs:150:23 - | -150 | pub fn advance_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/escape.rs:154:28 - | -154 | pub fn advance_back_by(&mut self, n: usize) -> Result<(), NonZero> { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:30:23 - | -30 | fn eq(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:34:23 - | -34 | fn ne(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:78:32 - | -78 | fn partial_cmp(&self, other: &($($T,)+)) -> Option { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:82:23 - | -82 | fn lt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:86:23 - | -86 | fn le(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:90:23 - | -90 | fn ge(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:94:23 - | -94 | fn gt(&self, other: &($($T,)+)) -> bool { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/tuple.rs:108:24 - | -108 | fn cmp(&self, other: &($($T,)+)) -> Ordering { - | ^^^^^ -... -213 | tuple_impls!(E D C B A Z Y X W V U T); - | ------------------------------------- in this macro invocation - | - = note: this error originates in the macro `tuple_impls` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the derive macro `Eq` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::ptr_generator` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::ptr_generator` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::ptr_generator` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem_init` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem_init` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem_init` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem_init` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem_init` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the macro `kani_core::kani_mem_init` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/lib.rs:426:1 - | -426 | kani_core::kani_lib!(core); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -81 | simd_ty!(u8x2[u8;2]: x0, x1); - | ---------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -81 | simd_ty!(u8x2[u8;2]: x0, x1); - | ---------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -81 | simd_ty!(u8x2[u8;2]: x0, x1); - | ---------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -81 | simd_ty!(u8x2[u8;2]: x0, x1); - | ---------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -82 | simd_ty!(i8x2[i8;2]: x0, x1); - | ---------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -82 | simd_ty!(i8x2[i8;2]: x0, x1); - | ---------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -82 | simd_ty!(i8x2[i8;2]: x0, x1); - | ---------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -82 | simd_ty!(i8x2[i8;2]: x0, x1); - | ---------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -86 | simd_ty!(u8x4[u8;4]: x0, x1, x2, x3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -86 | simd_ty!(u8x4[u8;4]: x0, x1, x2, x3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -86 | simd_ty!(u8x4[u8;4]: x0, x1, x2, x3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -86 | simd_ty!(u8x4[u8;4]: x0, x1, x2, x3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -87 | simd_ty!(u16x2[u16;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -87 | simd_ty!(u16x2[u16;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -87 | simd_ty!(u16x2[u16;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -87 | simd_ty!(u16x2[u16;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -89 | simd_ty!(i8x4[i8;4]: x0, x1, x2, x3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -89 | simd_ty!(i8x4[i8;4]: x0, x1, x2, x3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -89 | simd_ty!(i8x4[i8;4]: x0, x1, x2, x3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -89 | simd_ty!(i8x4[i8;4]: x0, x1, x2, x3); - | ------------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -90 | simd_ty!(i16x2[i16;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -90 | simd_ty!(i16x2[i16;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -90 | simd_ty!(i16x2[i16;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -90 | simd_ty!(i16x2[i16;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -94 | / simd_ty!( -95 | | u8x8[u8;8]: -96 | | x0, -97 | | x1, -... | -103 | | x7 -104 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -94 | / simd_ty!( -95 | | u8x8[u8;8]: -96 | | x0, -97 | | x1, -... | -103 | | x7 -104 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -94 | / simd_ty!( -95 | | u8x8[u8;8]: -96 | | x0, -97 | | x1, -... | -103 | | x7 -104 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -94 | / simd_ty!( -95 | | u8x8[u8;8]: -96 | | x0, -97 | | x1, -... | -103 | | x7 -104 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -105 | simd_ty!(u16x4[u16;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -105 | simd_ty!(u16x4[u16;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -105 | simd_ty!(u16x4[u16;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -105 | simd_ty!(u16x4[u16;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -106 | simd_ty!(u32x2[u32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -106 | simd_ty!(u32x2[u32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -106 | simd_ty!(u32x2[u32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -106 | simd_ty!(u32x2[u32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -107 | simd_ty!(u64x1[u64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -107 | simd_ty!(u64x1[u64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -107 | simd_ty!(u64x1[u64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -107 | simd_ty!(u64x1[u64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -109 | / simd_ty!( -110 | | i8x8[i8;8]: -111 | | x0, -112 | | x1, -... | -118 | | x7 -119 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -109 | / simd_ty!( -110 | | i8x8[i8;8]: -111 | | x0, -112 | | x1, -... | -118 | | x7 -119 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -109 | / simd_ty!( -110 | | i8x8[i8;8]: -111 | | x0, -112 | | x1, -... | -118 | | x7 -119 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -109 | / simd_ty!( -110 | | i8x8[i8;8]: -111 | | x0, -112 | | x1, -... | -118 | | x7 -119 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -120 | simd_ty!(i16x4[i16;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -120 | simd_ty!(i16x4[i16;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -120 | simd_ty!(i16x4[i16;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -120 | simd_ty!(i16x4[i16;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -121 | simd_ty!(i32x2[i32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -121 | simd_ty!(i32x2[i32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -121 | simd_ty!(i32x2[i32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -121 | simd_ty!(i32x2[i32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -122 | simd_ty!(i64x1[i64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -122 | simd_ty!(i64x1[i64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -122 | simd_ty!(i64x1[i64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -122 | simd_ty!(i64x1[i64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -124 | simd_ty!(f32x2[f32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -124 | simd_ty!(f32x2[f32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -124 | simd_ty!(f32x2[f32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -124 | simd_ty!(f32x2[f32;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -125 | simd_ty!(f64x1[f64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -125 | simd_ty!(f64x1[f64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -125 | simd_ty!(f64x1[f64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -125 | simd_ty!(f64x1[f64;1]: x1); - | -------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -129 | / simd_ty!( -130 | | u8x16[u8;16]: -131 | | x0, -132 | | x1, -... | -146 | | x15 -147 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -129 | / simd_ty!( -130 | | u8x16[u8;16]: -131 | | x0, -132 | | x1, -... | -146 | | x15 -147 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -129 | / simd_ty!( -130 | | u8x16[u8;16]: -131 | | x0, -132 | | x1, -... | -146 | | x15 -147 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -129 | / simd_ty!( -130 | | u8x16[u8;16]: -131 | | x0, -132 | | x1, -... | -146 | | x15 -147 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -148 | / simd_ty!( -149 | | u16x8[u16;8]: -150 | | x0, -151 | | x1, -... | -157 | | x7 -158 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -148 | / simd_ty!( -149 | | u16x8[u16;8]: -150 | | x0, -151 | | x1, -... | -157 | | x7 -158 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -148 | / simd_ty!( -149 | | u16x8[u16;8]: -150 | | x0, -151 | | x1, -... | -157 | | x7 -158 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -148 | / simd_ty!( -149 | | u16x8[u16;8]: -150 | | x0, -151 | | x1, -... | -157 | | x7 -158 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -159 | simd_ty!(u32x4[u32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -159 | simd_ty!(u32x4[u32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -159 | simd_ty!(u32x4[u32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -159 | simd_ty!(u32x4[u32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -160 | simd_ty!(u64x2[u64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -160 | simd_ty!(u64x2[u64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -160 | simd_ty!(u64x2[u64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -160 | simd_ty!(u64x2[u64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -162 | / simd_ty!( -163 | | i8x16[i8;16]: -164 | | x0, -165 | | x1, -... | -179 | | x15 -180 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -162 | / simd_ty!( -163 | | i8x16[i8;16]: -164 | | x0, -165 | | x1, -... | -179 | | x15 -180 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -162 | / simd_ty!( -163 | | i8x16[i8;16]: -164 | | x0, -165 | | x1, -... | -179 | | x15 -180 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -162 | / simd_ty!( -163 | | i8x16[i8;16]: -164 | | x0, -165 | | x1, -... | -179 | | x15 -180 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -181 | / simd_ty!( -182 | | i16x8[i16;8]: -183 | | x0, -184 | | x1, -... | -190 | | x7 -191 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -181 | / simd_ty!( -182 | | i16x8[i16;8]: -183 | | x0, -184 | | x1, -... | -190 | | x7 -191 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -181 | / simd_ty!( -182 | | i16x8[i16;8]: -183 | | x0, -184 | | x1, -... | -190 | | x7 -191 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -181 | / simd_ty!( -182 | | i16x8[i16;8]: -183 | | x0, -184 | | x1, -... | -190 | | x7 -191 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -192 | simd_ty!(i32x4[i32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -192 | simd_ty!(i32x4[i32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -192 | simd_ty!(i32x4[i32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -192 | simd_ty!(i32x4[i32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -193 | simd_ty!(i64x2[i64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -193 | simd_ty!(i64x2[i64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -193 | simd_ty!(i64x2[i64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -193 | simd_ty!(i64x2[i64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -195 | / simd_ty!( -196 | | f16x8[f16;8]: -197 | | x0, -198 | | x1, -... | -204 | | x7 -205 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -195 | / simd_ty!( -196 | | f16x8[f16;8]: -197 | | x0, -198 | | x1, -... | -204 | | x7 -205 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -195 | / simd_ty!( -196 | | f16x8[f16;8]: -197 | | x0, -198 | | x1, -... | -204 | | x7 -205 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -195 | / simd_ty!( -196 | | f16x8[f16;8]: -197 | | x0, -198 | | x1, -... | -204 | | x7 -205 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -206 | simd_ty!(f32x4[f32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -206 | simd_ty!(f32x4[f32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -206 | simd_ty!(f32x4[f32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -206 | simd_ty!(f32x4[f32;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -207 | simd_ty!(f64x2[f64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -207 | simd_ty!(f64x2[f64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -207 | simd_ty!(f64x2[f64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -207 | simd_ty!(f64x2[f64;2]: x0, x1); - | ------------------------------ in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:24 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -209 | / simd_m_ty!( -210 | | m8x16[i8;16]: -211 | | x0, -212 | | x1, -... | -226 | | x15 -227 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:31 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -209 | / simd_m_ty!( -210 | | m8x16[i8;16]: -211 | | x0, -212 | | x1, -... | -226 | | x15 -227 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:38 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -209 | / simd_m_ty!( -210 | | m8x16[i8;16]: -211 | | x0, -212 | | x1, -... | -226 | | x15 -227 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:67:32 - | -67 | #[derive(Copy, Clone)] - | ^^^^^ -... -209 | / simd_m_ty!( -210 | | m8x16[i8;16]: -211 | | x0, -212 | | x1, -... | -226 | | x15 -227 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:24 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -228 | / simd_m_ty!( -229 | | m16x8[i16;8]: -230 | | x0, -231 | | x1, -... | -237 | | x7 -238 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:31 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -228 | / simd_m_ty!( -229 | | m16x8[i16;8]: -230 | | x0, -231 | | x1, -... | -237 | | x7 -238 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:38 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -228 | / simd_m_ty!( -229 | | m16x8[i16;8]: -230 | | x0, -231 | | x1, -... | -237 | | x7 -238 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:67:32 - | -67 | #[derive(Copy, Clone)] - | ^^^^^ -... -228 | / simd_m_ty!( -229 | | m16x8[i16;8]: -230 | | x0, -231 | | x1, -... | -237 | | x7 -238 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:24 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -239 | simd_m_ty!(m32x4[i32;4]: x0, x1, x2, x3); - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:31 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -239 | simd_m_ty!(m32x4[i32;4]: x0, x1, x2, x3); - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:38 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -239 | simd_m_ty!(m32x4[i32;4]: x0, x1, x2, x3); - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:67:32 - | -67 | #[derive(Copy, Clone)] - | ^^^^^ -... -239 | simd_m_ty!(m32x4[i32;4]: x0, x1, x2, x3); - | ---------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:24 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -240 | simd_m_ty!(m64x2[i64;2]: x0, x1); - | -------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:31 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -240 | simd_m_ty!(m64x2[i64;2]: x0, x1); - | -------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:38 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -240 | simd_m_ty!(m64x2[i64;2]: x0, x1); - | -------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:67:32 - | -67 | #[derive(Copy, Clone)] - | ^^^^^ -... -240 | simd_m_ty!(m64x2[i64;2]: x0, x1); - | -------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -244 | / simd_ty!( -245 | | u8x32[u8;32]: -246 | | x0, -247 | | x1, -... | -277 | | x31 -278 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -244 | / simd_ty!( -245 | | u8x32[u8;32]: -246 | | x0, -247 | | x1, -... | -277 | | x31 -278 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -244 | / simd_ty!( -245 | | u8x32[u8;32]: -246 | | x0, -247 | | x1, -... | -277 | | x31 -278 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -244 | / simd_ty!( -245 | | u8x32[u8;32]: -246 | | x0, -247 | | x1, -... | -277 | | x31 -278 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -279 | / simd_ty!( -280 | | u16x16[u16;16]: -281 | | x0, -282 | | x1, -... | -296 | | x15 -297 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -279 | / simd_ty!( -280 | | u16x16[u16;16]: -281 | | x0, -282 | | x1, -... | -296 | | x15 -297 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -279 | / simd_ty!( -280 | | u16x16[u16;16]: -281 | | x0, -282 | | x1, -... | -296 | | x15 -297 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -279 | / simd_ty!( -280 | | u16x16[u16;16]: -281 | | x0, -282 | | x1, -... | -296 | | x15 -297 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -298 | / simd_ty!( -299 | | u32x8[u32;8]: -300 | | x0, -301 | | x1, -... | -307 | | x7 -308 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -298 | / simd_ty!( -299 | | u32x8[u32;8]: -300 | | x0, -301 | | x1, -... | -307 | | x7 -308 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -298 | / simd_ty!( -299 | | u32x8[u32;8]: -300 | | x0, -301 | | x1, -... | -307 | | x7 -308 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -298 | / simd_ty!( -299 | | u32x8[u32;8]: -300 | | x0, -301 | | x1, -... | -307 | | x7 -308 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -309 | simd_ty!(u64x4[u64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -309 | simd_ty!(u64x4[u64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -309 | simd_ty!(u64x4[u64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -309 | simd_ty!(u64x4[u64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -311 | / simd_ty!( -312 | | i8x32[i8;32]: -313 | | x0, -314 | | x1, -... | -344 | | x31 -345 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -311 | / simd_ty!( -312 | | i8x32[i8;32]: -313 | | x0, -314 | | x1, -... | -344 | | x31 -345 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -311 | / simd_ty!( -312 | | i8x32[i8;32]: -313 | | x0, -314 | | x1, -... | -344 | | x31 -345 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -311 | / simd_ty!( -312 | | i8x32[i8;32]: -313 | | x0, -314 | | x1, -... | -344 | | x31 -345 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -346 | / simd_ty!( -347 | | i16x16[i16;16]: -348 | | x0, -349 | | x1, -... | -363 | | x15 -364 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -346 | / simd_ty!( -347 | | i16x16[i16;16]: -348 | | x0, -349 | | x1, -... | -363 | | x15 -364 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -346 | / simd_ty!( -347 | | i16x16[i16;16]: -348 | | x0, -349 | | x1, -... | -363 | | x15 -364 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -346 | / simd_ty!( -347 | | i16x16[i16;16]: -348 | | x0, -349 | | x1, -... | -363 | | x15 -364 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -365 | / simd_ty!( -366 | | i32x8[i32;8]: -367 | | x0, -368 | | x1, -... | -374 | | x7 -375 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -365 | / simd_ty!( -366 | | i32x8[i32;8]: -367 | | x0, -368 | | x1, -... | -374 | | x7 -375 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -365 | / simd_ty!( -366 | | i32x8[i32;8]: -367 | | x0, -368 | | x1, -... | -374 | | x7 -375 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -365 | / simd_ty!( -366 | | i32x8[i32;8]: -367 | | x0, -368 | | x1, -... | -374 | | x7 -375 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -376 | simd_ty!(i64x4[i64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -376 | simd_ty!(i64x4[i64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -376 | simd_ty!(i64x4[i64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -376 | simd_ty!(i64x4[i64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -378 | / simd_ty!( -379 | | f16x16[f16;16]: -380 | | x0, -381 | | x1, -... | -395 | | x15 -396 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -378 | / simd_ty!( -379 | | f16x16[f16;16]: -380 | | x0, -381 | | x1, -... | -395 | | x15 -396 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -378 | / simd_ty!( -379 | | f16x16[f16;16]: -380 | | x0, -381 | | x1, -... | -395 | | x15 -396 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -378 | / simd_ty!( -379 | | f16x16[f16;16]: -380 | | x0, -381 | | x1, -... | -395 | | x15 -396 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -397 | / simd_ty!( -398 | | f32x8[f32;8]: -399 | | x0, -400 | | x1, -... | -406 | | x7 -407 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -397 | / simd_ty!( -398 | | f32x8[f32;8]: -399 | | x0, -400 | | x1, -... | -406 | | x7 -407 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -397 | / simd_ty!( -398 | | f32x8[f32;8]: -399 | | x0, -400 | | x1, -... | -406 | | x7 -407 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -397 | / simd_ty!( -398 | | f32x8[f32;8]: -399 | | x0, -400 | | x1, -... | -406 | | x7 -407 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -408 | simd_ty!(f64x4[f64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -408 | simd_ty!(f64x4[f64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -408 | simd_ty!(f64x4[f64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -408 | simd_ty!(f64x4[f64;4]: x0, x1, x2, x3); - | -------------------------------------- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:24 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -410 | / simd_m_ty!( -411 | | m8x32[i8;32]: -412 | | x0, -413 | | x1, -... | -443 | | x31 -444 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:31 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -410 | / simd_m_ty!( -411 | | m8x32[i8;32]: -412 | | x0, -413 | | x1, -... | -443 | | x31 -444 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:38 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -410 | / simd_m_ty!( -411 | | m8x32[i8;32]: -412 | | x0, -413 | | x1, -... | -443 | | x31 -444 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:67:32 - | -67 | #[derive(Copy, Clone)] - | ^^^^^ -... -410 | / simd_m_ty!( -411 | | m8x32[i8;32]: -412 | | x0, -413 | | x1, -... | -443 | | x31 -444 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:24 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -445 | / simd_m_ty!( -446 | | m16x16[i16;16]: -447 | | x0, -448 | | x1, -... | -462 | | x15 -463 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:31 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -445 | / simd_m_ty!( -446 | | m16x16[i16;16]: -447 | | x0, -448 | | x1, -... | -462 | | x15 -463 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:38 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -445 | / simd_m_ty!( -446 | | m16x16[i16;16]: -447 | | x0, -448 | | x1, -... | -462 | | x15 -463 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:67:32 - | -67 | #[derive(Copy, Clone)] - | ^^^^^ -... -445 | / simd_m_ty!( -446 | | m16x16[i16;16]: -447 | | x0, -448 | | x1, -... | -462 | | x15 -463 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:24 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -464 | / simd_m_ty!( -465 | | m32x8[i32;8]: -466 | | x0, -467 | | x1, -... | -473 | | x7 -474 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:31 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -464 | / simd_m_ty!( -465 | | m32x8[i32;8]: -466 | | x0, -467 | | x1, -... | -473 | | x7 -474 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:49:38 - | -49 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -464 | / simd_m_ty!( -465 | | m32x8[i32;8]: -466 | | x0, -467 | | x1, -... | -473 | | x7 -474 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:67:32 - | -67 | #[derive(Copy, Clone)] - | ^^^^^ -... -464 | / simd_m_ty!( -465 | | m32x8[i32;8]: -466 | | x0, -467 | | x1, -... | -473 | | x7 -474 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_m_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -479 | / simd_ty!( -480 | | i8x64[i8;64]: -481 | | x0, -482 | | x1, -... | -544 | | x63 -545 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -479 | / simd_ty!( -480 | | i8x64[i8;64]: -481 | | x0, -482 | | x1, -... | -544 | | x63 -545 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -479 | / simd_ty!( -480 | | i8x64[i8;64]: -481 | | x0, -482 | | x1, -... | -544 | | x63 -545 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -479 | / simd_ty!( -480 | | i8x64[i8;64]: -481 | | x0, -482 | | x1, -... | -544 | | x63 -545 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -547 | / simd_ty!( -548 | | u8x64[u8;64]: -549 | | x0, -550 | | x1, -... | -612 | | x63 -613 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -547 | / simd_ty!( -548 | | u8x64[u8;64]: -549 | | x0, -550 | | x1, -... | -612 | | x63 -613 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -547 | / simd_ty!( -548 | | u8x64[u8;64]: -549 | | x0, -550 | | x1, -... | -612 | | x63 -613 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -547 | / simd_ty!( -548 | | u8x64[u8;64]: -549 | | x0, -550 | | x1, -... | -612 | | x63 -613 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -615 | / simd_ty!( -616 | | i16x32[i16;32]: -617 | | x0, -618 | | x1, -... | -648 | | x31 -649 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -615 | / simd_ty!( -616 | | i16x32[i16;32]: -617 | | x0, -618 | | x1, -... | -648 | | x31 -649 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -615 | / simd_ty!( -616 | | i16x32[i16;32]: -617 | | x0, -618 | | x1, -... | -648 | | x31 -649 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -615 | / simd_ty!( -616 | | i16x32[i16;32]: -617 | | x0, -618 | | x1, -... | -648 | | x31 -649 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -651 | / simd_ty!( -652 | | u16x32[u16;32]: -653 | | x0, -654 | | x1, -... | -684 | | x31 -685 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -651 | / simd_ty!( -652 | | u16x32[u16;32]: -653 | | x0, -654 | | x1, -... | -684 | | x31 -685 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -651 | / simd_ty!( -652 | | u16x32[u16;32]: -653 | | x0, -654 | | x1, -... | -684 | | x31 -685 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -651 | / simd_ty!( -652 | | u16x32[u16;32]: -653 | | x0, -654 | | x1, -... | -684 | | x31 -685 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -687 | / simd_ty!( -688 | | i32x16[i32;16]: -689 | | x0, -690 | | x1, -... | -704 | | x15 -705 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -687 | / simd_ty!( -688 | | i32x16[i32;16]: -689 | | x0, -690 | | x1, -... | -704 | | x15 -705 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -687 | / simd_ty!( -688 | | i32x16[i32;16]: -689 | | x0, -690 | | x1, -... | -704 | | x15 -705 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -687 | / simd_ty!( -688 | | i32x16[i32;16]: -689 | | x0, -690 | | x1, -... | -704 | | x15 -705 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -707 | / simd_ty!( -708 | | u32x16[u32;16]: -709 | | x0, -710 | | x1, -... | -724 | | x15 -725 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -707 | / simd_ty!( -708 | | u32x16[u32;16]: -709 | | x0, -710 | | x1, -... | -724 | | x15 -725 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -707 | / simd_ty!( -708 | | u32x16[u32;16]: -709 | | x0, -710 | | x1, -... | -724 | | x15 -725 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -707 | / simd_ty!( -708 | | u32x16[u32;16]: -709 | | x0, -710 | | x1, -... | -724 | | x15 -725 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -727 | / simd_ty!( -728 | | f16x32[f16;32]: -729 | | x0, -730 | | x1, -... | -760 | | x31 -761 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -727 | / simd_ty!( -728 | | f16x32[f16;32]: -729 | | x0, -730 | | x1, -... | -760 | | x31 -761 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -727 | / simd_ty!( -728 | | f16x32[f16;32]: -729 | | x0, -730 | | x1, -... | -760 | | x31 -761 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -727 | / simd_ty!( -728 | | f16x32[f16;32]: -729 | | x0, -730 | | x1, -... | -760 | | x31 -761 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -762 | / simd_ty!( -763 | | f32x16[f32;16]: -764 | | x0, -765 | | x1, -... | -779 | | x15 -780 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -762 | / simd_ty!( -763 | | f32x16[f32;16]: -764 | | x0, -765 | | x1, -... | -779 | | x15 -780 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -762 | / simd_ty!( -763 | | f32x16[f32;16]: -764 | | x0, -765 | | x1, -... | -779 | | x15 -780 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -762 | / simd_ty!( -763 | | f32x16[f32;16]: -764 | | x0, -765 | | x1, -... | -779 | | x15 -780 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -782 | / simd_ty!( -783 | | i64x8[i64;8]: -784 | | x0, -785 | | x1, -... | -791 | | x7 -792 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -782 | / simd_ty!( -783 | | i64x8[i64;8]: -784 | | x0, -785 | | x1, -... | -791 | | x7 -792 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -782 | / simd_ty!( -783 | | i64x8[i64;8]: -784 | | x0, -785 | | x1, -... | -791 | | x7 -792 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -782 | / simd_ty!( -783 | | i64x8[i64;8]: -784 | | x0, -785 | | x1, -... | -791 | | x7 -792 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -794 | / simd_ty!( -795 | | u64x8[u64;8]: -796 | | x0, -797 | | x1, -... | -803 | | x7 -804 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -794 | / simd_ty!( -795 | | u64x8[u64;8]: -796 | | x0, -797 | | x1, -... | -803 | | x7 -804 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -794 | / simd_ty!( -795 | | u64x8[u64;8]: -796 | | x0, -797 | | x1, -... | -803 | | x7 -804 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -794 | / simd_ty!( -795 | | u64x8[u64;8]: -796 | | x0, -797 | | x1, -... | -803 | | x7 -804 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -806 | / simd_ty!( -807 | | f64x8[f64;8]: -808 | | x0, -809 | | x1, -... | -815 | | x7 -816 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -806 | / simd_ty!( -807 | | f64x8[f64;8]: -808 | | x0, -809 | | x1, -... | -815 | | x7 -816 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -806 | / simd_ty!( -807 | | f64x8[f64;8]: -808 | | x0, -809 | | x1, -... | -815 | | x7 -816 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -806 | / simd_ty!( -807 | | f64x8[f64;8]: -808 | | x0, -809 | | x1, -... | -815 | | x7 -816 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -819 | / simd_ty!( -820 | | u16x64[u16;64]: -821 | | x0, -822 | | x1, -... | -884 | | x63 -885 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -819 | / simd_ty!( -820 | | u16x64[u16;64]: -821 | | x0, -822 | | x1, -... | -884 | | x63 -885 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -819 | / simd_ty!( -820 | | u16x64[u16;64]: -821 | | x0, -822 | | x1, -... | -884 | | x63 -885 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -819 | / simd_ty!( -820 | | u16x64[u16;64]: -821 | | x0, -822 | | x1, -... | -884 | | x63 -885 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -886 | / simd_ty!( -887 | | i32x32[i32;32]: -888 | | x0, -889 | | x1, -... | -919 | | x31 -920 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -886 | / simd_ty!( -887 | | i32x32[i32;32]: -888 | | x0, -889 | | x1, -... | -919 | | x31 -920 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -886 | / simd_ty!( -887 | | i32x32[i32;32]: -888 | | x0, -889 | | x1, -... | -919 | | x31 -920 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -886 | / simd_ty!( -887 | | i32x32[i32;32]: -888 | | x0, -889 | | x1, -... | -919 | | x31 -920 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:24 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -921 | / simd_ty!( -922 | | u32x32[u32;32]: -923 | | x0, -924 | | x1, -... | -954 | | x31 -955 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:31 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^ -... -921 | / simd_ty!( -922 | | u32x32[u32;32]: -923 | | x0, -924 | | x1, -... | -954 | | x31 -955 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Debug` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:8:38 - | -8 | #[derive(Copy, Clone, Debug, PartialEq)] - | ^^^^^^^^^ -... -921 | / simd_ty!( -922 | | u32x32[u32;32]: -923 | | x0, -924 | | x1, -... | -954 | | x31 -955 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `PartialEq` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/simd.rs:20:32 - | -20 | #[derive(Copy, Clone)] - | ^^^^^ -... -921 | / simd_ty!( -922 | | u32x32[u32;32]: -923 | | x0, -924 | | x1, -... | -954 | | x31 -955 | | ); - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `simd_ty` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:110:20 - | -110 | fn fmt(&self, f: &mut crate::fmt::Formatter<'_>) -> crate::fmt::Result { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:10:1 - | -10 | / types! { -11 | | #![stable(feature = "simd_x86", since = "1.27.0")] -12 | | -13 | | /// 128-bit wide integer vector type, x86-specific -... | -274 | | pub struct __m256d(4 x f64); -275 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:277:1 - | -277 | / types! { -278 | | #![stable(feature = "simd_avx512_types", since = "1.72.0")] -279 | | -280 | | /// 512-bit wide integer vector type, x86-specific -... | -351 | | pub struct __m512d(8 x f64); -352 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:277:1 - | -277 | / types! { -278 | | #![stable(feature = "simd_avx512_types", since = "1.72.0")] -279 | | -280 | | /// 512-bit wide integer vector type, x86-specific -... | -351 | | pub struct __m512d(8 x f64); -352 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:110:20 - | -110 | fn fmt(&self, f: &mut crate::fmt::Formatter<'_>) -> crate::fmt::Result { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:277:1 - | -277 | / types! { -278 | | #![stable(feature = "simd_avx512_types", since = "1.72.0")] -279 | | -280 | | /// 512-bit wide integer vector type, x86-specific -... | -351 | | pub struct __m512d(8 x f64); -352 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:277:1 - | -277 | / types! { -278 | | #![stable(feature = "simd_avx512_types", since = "1.72.0")] -279 | | -280 | | /// 512-bit wide integer vector type, x86-specific -... | -351 | | pub struct __m512d(8 x f64); -352 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:277:1 - | -277 | / types! { -278 | | #![stable(feature = "simd_avx512_types", since = "1.72.0")] -279 | | -280 | | /// 512-bit wide integer vector type, x86-specific -... | -351 | | pub struct __m512d(8 x f64); -352 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:277:1 - | -277 | / types! { -278 | | #![stable(feature = "simd_avx512_types", since = "1.72.0")] -279 | | -280 | | /// 512-bit wide integer vector type, x86-specific -... | -351 | | pub struct __m512d(8 x f64); -352 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:277:1 - | -277 | / types! { -278 | | #![stable(feature = "simd_avx512_types", since = "1.72.0")] -279 | | -280 | | /// 512-bit wide integer vector type, x86-specific -... | -351 | | pub struct __m512d(8 x f64); -352 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:354:1 - | -354 | / types! { -355 | | #![unstable(feature = "stdarch_x86_avx512", issue = "111137")] -356 | | -357 | | /// 128-bit wide set of eight `u16` types, x86-specific -... | -396 | | pub struct __m512bh(32 x u16); -397 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:354:1 - | -354 | / types! { -355 | | #![unstable(feature = "stdarch_x86_avx512", issue = "111137")] -356 | | -357 | | /// 128-bit wide set of eight `u16` types, x86-specific -... | -396 | | pub struct __m512bh(32 x u16); -397 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:110:20 - | -110 | fn fmt(&self, f: &mut crate::fmt::Formatter<'_>) -> crate::fmt::Result { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:354:1 - | -354 | / types! { -355 | | #![unstable(feature = "stdarch_x86_avx512", issue = "111137")] -356 | | -357 | | /// 128-bit wide set of eight `u16` types, x86-specific -... | -396 | | pub struct __m512bh(32 x u16); -397 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:354:1 - | -354 | / types! { -355 | | #![unstable(feature = "stdarch_x86_avx512", issue = "111137")] -356 | | -357 | | /// 128-bit wide set of eight `u16` types, x86-specific -... | -396 | | pub struct __m512bh(32 x u16); -397 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:354:1 - | -354 | / types! { -355 | | #![unstable(feature = "stdarch_x86_avx512", issue = "111137")] -356 | | -357 | | /// 128-bit wide set of eight `u16` types, x86-specific -... | -396 | | pub struct __m512bh(32 x u16); -397 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:354:1 - | -354 | / types! { -355 | | #![unstable(feature = "stdarch_x86_avx512", issue = "111137")] -356 | | -357 | | /// 128-bit wide set of eight `u16` types, x86-specific -... | -396 | | pub struct __m512bh(32 x u16); -397 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:354:1 - | -354 | / types! { -355 | | #![unstable(feature = "stdarch_x86_avx512", issue = "111137")] -356 | | -357 | | /// 128-bit wide set of eight `u16` types, x86-specific -... | -396 | | pub struct __m512bh(32 x u16); -397 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:399:1 - | -399 | / types! { -400 | | #![unstable(feature = "stdarch_x86_avx512_f16", issue = "127213")] -401 | | -402 | | /// 128-bit wide set of 8 `f16` types, x86-specific -... | -442 | | pub struct __m512h(32 x f16); -443 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:399:1 - | -399 | / types! { -400 | | #![unstable(feature = "stdarch_x86_avx512_f16", issue = "127213")] -401 | | -402 | | /// 128-bit wide set of 8 `f16` types, x86-specific -... | -442 | | pub struct __m512h(32 x f16); -443 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:110:20 - | -110 | fn fmt(&self, f: &mut crate::fmt::Formatter<'_>) -> crate::fmt::Result { - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:399:1 - | -399 | / types! { -400 | | #![unstable(feature = "stdarch_x86_avx512_f16", issue = "127213")] -401 | | -402 | | /// 128-bit wide set of 8 `f16` types, x86-specific -... | -442 | | pub struct __m512h(32 x f16); -443 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:399:1 - | -399 | / types! { -400 | | #![unstable(feature = "stdarch_x86_avx512_f16", issue = "127213")] -401 | | -402 | | /// 128-bit wide set of 8 `f16` types, x86-specific -... | -442 | | pub struct __m512h(32 x f16); -443 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:399:1 - | -399 | / types! { -400 | | #![unstable(feature = "stdarch_x86_avx512_f16", issue = "127213")] -401 | | -402 | | /// 128-bit wide set of 8 `f16` types, x86-specific -... | -442 | | pub struct __m512h(32 x f16); -443 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:86:24 - | -86 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:399:1 - | -399 | / types! { -400 | | #![unstable(feature = "stdarch_x86_avx512_f16", issue = "127213")] -401 | | -402 | | /// 128-bit wide set of 8 `f16` types, x86-specific -... | -442 | | pub struct __m512h(32 x f16); -443 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/macros.rs:97:32 - | -97 | #[derive(Copy, Clone)] - | ^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:399:1 - | -399 | / types! { -400 | | #![unstable(feature = "stdarch_x86_avx512_f16", issue = "127213")] -401 | | -402 | | /// 128-bit wide set of 8 `f16` types, x86-specific -... | -442 | | pub struct __m512h(32 x f16); -443 | | } - | |_- in this macro invocation - | - = note: this error originates in the derive macro `Clone` which comes from the expansion of the macro `types` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:447:16 - | -447 | #[derive(Copy, Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs:447:23 - | -447 | #[derive(Copy, Clone, Debug)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/cpuid.rs:11:16 - | -11 | #[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd)] - | ^^^^^ - | - = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/cpuid.rs:11:23 - | -11 | #[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd)] - | ^^^^^ - | - = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/cpuid.rs:11:30 - | -11 | #[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd)] - | ^^ - | - = note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/cpuid.rs:11:34 - | -11 | #[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd)] - | ^^^ - | - = note: this error originates in the derive macro `Ord` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/cpuid.rs:11:39 - | -11 | #[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd)] - | ^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialEq` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../stdarch/crates/core_arch/src/x86/cpuid.rs:11:50 - | -11 | #[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd)] - | ^^^^^^^^^^ - | - = note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/fmt.rs:18:12 - | -18 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:130:14 - | -130 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:233:34 - | -233 | pub unsafe fn test_unchecked(&self, index: usize) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:245:17 - | -245 | pub fn test(&self, index: usize) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:256:33 - | -256 | pub unsafe fn set_unchecked(&mut self, index: usize, value: bool) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:269:16 - | -269 | pub fn set(&mut self, index: usize, value: bool) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:459:11 - | -459 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:471:20 - | -471 | fn partial_cmp(&self, other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:482:12 - | -482 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:625:22 - | -625 | fn bitand_assign(&mut self, rhs: Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:636:22 - | -636 | fn bitand_assign(&mut self, rhs: bool) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:647:21 - | -647 | fn bitor_assign(&mut self, rhs: Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:658:21 - | -658 | fn bitor_assign(&mut self, rhs: bool) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:669:22 - | -669 | fn bitxor_assign(&mut self, rhs: Self) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs:680:22 - | -680 | fn bitxor_assign(&mut self, rhs: bool) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks/full_masks.rs:25:14 - | -25 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks/full_masks.rs:36:11 - | -36 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks/full_masks.rs:47:20 - | -47 | fn partial_cmp(&self, other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks/full_masks.rs:65:12 - | -65 | fn cmp(&self, other: &Self) -> core::cmp::Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks/full_masks.rs:112:34 - | -112 | pub unsafe fn test_unchecked(&self, lane: usize) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/masks/full_masks.rs:117:33 - | -117 | pub unsafe fn set_unchecked(&mut self, lane: usize, value: bool) { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/ops.rs:20:14 - | -20 | fn index(&self, index: I) -> &Self::Output { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/ops.rs:32:18 - | -32 | fn index_mut(&mut self, index: I) -> &mut Self::Output { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/ops/assign.rs:27:29 - | -27 | fn $assign_call(&mut self, rhs: U) { - | ^^^^^^^^^ -... -34 | / assign_ops! { -35 | | // Arithmetic -36 | | impl AddAssign for Simd -37 | | where -... | -124 | | } -125 | | } - | |_- in this macro invocation - | - = note: this error originates in the macro `assign_ops` (in Nightly builds, run with -Z macro-backtrace for more info) - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:130:22 - | -130 | pub const fn len(&self) -> usize { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:168:27 - | -168 | pub const fn as_array(&self) -> &[T; N] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:180:25 - | -180 | pub fn as_mut_array(&mut self) -> &mut [T; N] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:878:14 - | -878 | fn clone(&self) -> Self { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:900:11 - | -900 | fn eq(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:914:11 - | -914 | fn ne(&self, other: &Self) -> bool { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:933:20 - | -933 | fn partial_cmp(&self, other: &Self) -> Option { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:952:12 - | -952 | fn cmp(&self, other: &Self) -> core::cmp::Ordering { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:964:16 - | -964 | fn hash(&self, state: &mut H) - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:979:15 - | -979 | fn as_ref(&self) -> &[T; N] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:990:15 - | -990 | fn as_mut(&mut self) -> &mut [T; N] { - | ^^^^^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:1002:15 - | -1002 | fn as_ref(&self) -> &[T] { - | ^^^^^ - -error: requires `legacy_receiver` lang_item - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs:1013:15 - | -1013 | fn as_mut(&mut self) -> &mut [T] { - | ^^^^^^^^^ - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:257:41 - | -257 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i8` -note: candidate #2 is defined in an impl for the type `i8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:284:5 - | -284 | / int_impl! { -285 | | Self = i8, -286 | | ActualT = i8, -287 | | UnsignedT = u8, -... | -302 | | bound_condition = "", -303 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:265:41 - | -265 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i8` -note: candidate #2 is defined in an impl for the type `i8` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:284:5 - | -284 | / int_impl! { -285 | | Self = i8, -286 | | ActualT = i8, -287 | | UnsignedT = u8, -... | -302 | | bound_condition = "", -303 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:257:41 - | -257 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i16` -note: candidate #2 is defined in an impl for the type `i16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:307:5 - | -307 | / int_impl! { -308 | | Self = i16, -309 | | ActualT = i16, -310 | | UnsignedT = u16, -... | -325 | | bound_condition = "", -326 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:265:41 - | -265 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i16` -note: candidate #2 is defined in an impl for the type `i16` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:307:5 - | -307 | / int_impl! { -308 | | Self = i16, -309 | | ActualT = i16, -310 | | UnsignedT = u16, -... | -325 | | bound_condition = "", -326 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:257:41 - | -257 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i32` -note: candidate #2 is defined in an impl for the type `i32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:330:5 - | -330 | / int_impl! { -331 | | Self = i32, -332 | | ActualT = i32, -333 | | UnsignedT = u32, -... | -348 | | bound_condition = "", -349 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:265:41 - | -265 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i32` -note: candidate #2 is defined in an impl for the type `i32` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:330:5 - | -330 | / int_impl! { -331 | | Self = i32, -332 | | ActualT = i32, -333 | | UnsignedT = u32, -... | -348 | | bound_condition = "", -349 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:257:41 - | -257 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i64` -note: candidate #2 is defined in an impl for the type `i64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:353:5 - | -353 | / int_impl! { -354 | | Self = i64, -355 | | ActualT = i64, -356 | | UnsignedT = u64, -... | -371 | | bound_condition = "", -372 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:265:41 - | -265 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `i64` -note: candidate #2 is defined in an impl for the type `i64` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:353:5 - | -353 | / int_impl! { -354 | | Self = i64, -355 | | ActualT = i64, -356 | | UnsignedT = u64, -... | -371 | | bound_condition = "", -372 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:257:41 - | -257 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `isize` -note: candidate #2 is defined in an impl for the type `isize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:450:5 - | -450 | / int_impl! { -451 | | Self = isize, -452 | | ActualT = i64, -453 | | UnsignedT = usize, -... | -468 | | bound_condition = " on 64-bit targets", -469 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -error[E0034]: multiple applicable items in scope - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs:265:41 - | -265 | const SHR: $ty = <$ty>::BITS as $ty - 1; - | ^^^^ multiple `BITS` found -... -371 | impl_trait! { i8 (u8), i16 (u16), i32 (u32), i64 (u64), isize (usize) } - | ----------------------------------------------------------------------- in this macro invocation - | - = note: candidate #1 is defined in an impl for the type `isize` -note: candidate #2 is defined in an impl for the type `isize` - --> /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/int_macros.rs:61:9 - | -61 | pub const BITS: u32 = <$UnsignedT>::BITS; - | ^^^^^^^^^^^^^^^^^^^ - | - ::: /Users/dhvanikapadia/Desktop/verify-rust-std/library/core/src/num/mod.rs:450:5 - | -450 | / int_impl! { -451 | | Self = isize, -452 | | ActualT = i64, -453 | | UnsignedT = usize, -... | -468 | | bound_condition = " on 64-bit targets", -469 | | } - | |_____- in this macro invocation - = note: this error originates in the macro `impl_trait` which comes from the expansion of the macro `int_impl` (in Nightly builds, run with -Z macro-backtrace for more info) - -Some errors have detailed explanations: E0034, E0522, E0773. -For more information about an error, try `rustc --explain E0034`. -error: Failed to execute cargo (exit status: 101). Found 4950 compilation errors. From a92f07de123afb3e92416b04b7da3b95a78d23d2 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Fri, 22 Nov 2024 10:52:00 -0800 Subject: [PATCH 19/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 37 ++++++++++++++------------------ 1 file changed, 16 insertions(+), 21 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 383c609b77c17..31691444ac346 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -2188,47 +2188,42 @@ mod verify { assert_eq!(old_b, new_a); } } -} + #[kani::proof_for_contract(NonNull::as_ptr)] pub fn non_null_check_as_ptr() { // Create a non-null pointer to a random value let non_null_ptr: *mut i32 = kani::any::() as *mut i32; if let Some(ptr) = NonNull::new(non_null_ptr){ - // Call as_ptr - let raw_ptr = ptr.as_ptr();} + let result = ptr.as_ptr(); + } } #[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] pub fn non_null_check_as_mut_ptr() { const ARR_LEN: usize = 100; - let mut generator = kani::PointerGenerator::::new(); - let alloc_status = generator.any_alloc_status(); - let raw_ptr: *mut i32 = alloc_status.ptr as *mut i32; - let values: [i32; ARR_LEN] = kani::any(); - if let Some(non_null_ptr) = NonNull::new(raw_ptr) { - let slice_ptr = NonNull::slice_from_raw_parts(non_null_ptr, values.len()); - let raw_ptr = slice_ptr.as_mut_ptr(); - }} + let mut values: [i32; ARR_LEN] = kani::any(); + let slice = kani::slice::any_slice_of_array_mut(&mut values); + let non_null_ptr = NonNull::new(slice as *mut [i32]).unwrap(); + let result = non_null_ptr.as_mut_ptr(); + } #[kani::proof_for_contract(NonNull::::cast)] pub fn non_null_check_cast() { // Create a non-null pointer to a random value let non_null_ptr: *mut i32 = kani::any::() as *mut i32; if let Some(ptr) = NonNull::new(non_null_ptr){ - // Perform the cast - let casted_ptr: NonNull = ptr.cast(); - }} + let result: NonNull = ptr.cast(); + } + } #[kani::proof_for_contract(NonNull::<[T]>::as_non_null_ptr)] pub fn non_null_check_as_non_null_ptr() { const ARR_LEN: usize = 100; - let mut generator = kani::PointerGenerator::::new(); - let alloc_status = generator.any_alloc_status(); - let raw_ptr: *mut i32 = alloc_status.ptr as *mut i32; - let mut values: [i32; ARR_LEN] = [0; ARR_LEN]; - if let Some(ptr) = NonNull::new(raw_ptr){ - let slice_ptr = NonNull::slice_from_raw_parts(ptr, values.len()); + let mut values: [i32; ARR_LEN] = kani::any(); + let slice = kani::slice::any_slice_of_array_mut(&mut values); + let non_null_ptr = NonNull::new(slice as *mut [i32]).unwrap(); let result = slice_ptr.as_non_null_ptr(); - }} + } +} From 43e579ef3ce843fe2849947255ffa71aa3ec83a1 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Fri, 22 Nov 2024 11:33:06 -0800 Subject: [PATCH 20/29] fixing indentation --- library/core/src/ptr/non_null.rs | 122 +++++++++++++++++++++---------- 1 file changed, 82 insertions(+), 40 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 31691444ac346..5e9b3da90f312 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -138,8 +138,8 @@ impl NonNull { #[must_use] #[unstable(feature = "ptr_as_uninit", issue = "75402")] #[rustc_const_unstable(feature = "ptr_as_uninit", issue = "75402")] - #[requires(ub_checks::can_dereference(self.as_ptr()))] // Ensure the pointer is valid to create a reference. - #[ensures(|result: &&MaybeUninit| core::ptr::eq(*result, self.cast().as_ptr()))] // Ensure returned reference points to the correct memory location. + #[requires(ub_checks::can_dereference(self.as_ptr()))] // Ensure the pointer is valid to create a reference. + #[ensures(|result: &&MaybeUninit| core::ptr::eq(*result, self.cast().as_ptr()))] // Ensure returned reference points to the correct memory location. pub const unsafe fn as_uninit_ref<'a>(self) -> &'a MaybeUninit { // SAFETY: the caller must guarantee that `self` meets all the // requirements for a reference. @@ -164,8 +164,8 @@ impl NonNull { #[must_use] #[unstable(feature = "ptr_as_uninit", issue = "75402")] #[rustc_const_unstable(feature = "ptr_as_uninit", issue = "75402")] - #[requires(ub_checks::can_dereference(self.as_ptr()))] // Ensure pointer is valid to create a mutable reference. - #[ensures(|result: &&mut MaybeUninit| core::ptr::eq(*result, self.cast().as_ptr()))] // Ensure the returned reference points to the correct memory. + #[requires(ub_checks::can_dereference(self.as_ptr()))] // Ensure pointer is valid to create a mutable reference. + #[ensures(|result: &&mut MaybeUninit| core::ptr::eq(*result, self.cast().as_ptr()))] // Ensure the returned reference points to the correct memory. pub const unsafe fn as_uninit_mut<'a>(self) -> &'a mut MaybeUninit { // SAFETY: the caller must guarantee that `self` meets all the // requirements for a reference. @@ -248,7 +248,11 @@ impl NonNull { #[inline] pub const fn from_ref(r: &T) -> Self { // SAFETY: A reference cannot be null. - unsafe { NonNull { pointer: r as *const T } } + unsafe { + NonNull { + pointer: r as *const T, + } + } } /// Converts a mutable reference to a `NonNull` pointer. @@ -257,7 +261,11 @@ impl NonNull { #[inline] pub const fn from_mut(r: &mut T) -> Self { // SAFETY: A mutable reference cannot be null. - unsafe { NonNull { pointer: r as *mut T } } + unsafe { + NonNull { + pointer: r as *mut T, + } + } } /// Performs the same functionality as [`std::ptr::from_raw_parts`], except that a @@ -392,7 +400,7 @@ impl NonNull { #[must_use] #[inline(always)] #[requires(ub_checks::can_dereference(self.as_ptr() as *const()))] // Ensure input is convertible to a reference - #[ensures(|result: &&T| core::ptr::eq(*result, self.as_ptr()))] // Ensure returned reference matches pointer + #[ensures(|result: &&T| core::ptr::eq(*result, self.as_ptr()))] // Ensure returned reference matches pointer pub const unsafe fn as_ref<'a>(&self) -> &'a T { // SAFETY: the caller must guarantee that `self` meets all the // requirements for a reference. @@ -462,7 +470,11 @@ impl NonNull { #[ensures(|result: &NonNull| result.as_ptr().addr() == self.as_ptr().addr())] pub const fn cast(self) -> NonNull { // SAFETY: `self` is a `NonNull` pointer which is necessarily non-null - unsafe { NonNull { pointer: self.as_ptr() as *mut U } } + unsafe { + NonNull { + pointer: self.as_ptr() as *mut U, + } + } } /// Adds an offset to a pointer. @@ -514,7 +526,11 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { NonNull { pointer: intrinsics::offset(self.pointer, count) } } + unsafe { + NonNull { + pointer: intrinsics::offset(self.pointer, count), + } + } } /// Calculates the offset from a pointer in bytes. @@ -538,7 +554,11 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { NonNull { pointer: self.pointer.byte_offset(count) } } + unsafe { + NonNull { + pointer: self.pointer.byte_offset(count), + } + } } /// Adds an offset to a pointer (convenience for `.offset(count as isize)`). @@ -595,7 +615,11 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { NonNull { pointer: intrinsics::offset(self.pointer, count) } } + unsafe { + NonNull { + pointer: intrinsics::offset(self.pointer, count), + } + } } /// Calculates the offset from a pointer in bytes (convenience for `.byte_offset(count as isize)`). @@ -619,7 +643,11 @@ impl NonNull { // Additionally safety contract of `add` guarantees that the resulting pointer is pointing // to an allocation, there can't be an allocation at null, thus it's safe to construct // `NonNull`. - unsafe { NonNull { pointer: self.pointer.byte_add(count) } } + unsafe { + NonNull { + pointer: self.pointer.byte_add(count), + } + } } /// Subtracts an offset from a pointer (convenience for @@ -702,7 +730,11 @@ impl NonNull { // Additionally safety contract of `sub` guarantees that the resulting pointer is pointing // to an allocation, there can't be an allocation at null, thus it's safe to construct // `NonNull`. - unsafe { NonNull { pointer: self.pointer.byte_sub(count) } } + unsafe { + NonNull { + pointer: self.pointer.byte_sub(count), + } + } } /// Calculates the distance between two pointers within the same allocation. The returned value is in @@ -1741,7 +1773,7 @@ impl NonNull<[T]> { #[requires(self.len().checked_mul(core::mem::size_of::()).is_some() && self.len() * core::mem::size_of::() <= isize::MAX as usize)] // Ensure the slice size does not exceed isize::MAX #[requires(kani::mem::same_allocation(self.as_ptr() as *const(), self.as_ptr().byte_add(self.len() * core::mem::size_of::()) as *const()))] // Ensure the slice is contained within a single allocation #[ensures(|result: &&mut [MaybeUninit]| result.len() == self.len())] // Length check - #[ensures(|result: &&mut [MaybeUninit]| core::ptr::eq(result.as_ptr(), self.cast().as_ptr()))] // Address check + #[ensures(|result: &&mut [MaybeUninit]| core::ptr::eq(result.as_ptr(), self.cast().as_ptr()))] // Address check pub const unsafe fn as_uninit_slice_mut<'a>(self) -> &'a mut [MaybeUninit] { // SAFETY: the caller must uphold the safety contract for `as_uninit_slice_mut`. unsafe { slice::from_raw_parts_mut(self.cast().as_ptr(), self.len()) } @@ -1884,7 +1916,7 @@ impl From<&T> for NonNull { } #[cfg(kani)] -#[unstable(feature="kani", issue="none")] +#[unstable(feature = "kani", issue = "none")] mod verify { use super::*; use crate::ptr::null_mut; @@ -1904,10 +1936,14 @@ mod verify { pub fn non_null_check_new() { let mut x: i32 = kani::any(); let xptr = &mut x; - let maybe_null_ptr = if kani::any() { xptr as *mut i32 } else { null_mut() }; + let maybe_null_ptr = if kani::any() { + xptr as *mut i32 + } else { + null_mut() + }; let _ = NonNull::new(maybe_null_ptr); } - + // pub const unsafe fn read(self) -> T where T: Sized #[kani::proof_for_contract(NonNull::read)] pub fn non_null_check_read() { @@ -1922,10 +1958,13 @@ mod verify { const ARR_LEN: usize = 10000; let mut generator = PointerGenerator::::new(); let raw_ptr: *mut i8 = generator.any_in_bounds().ptr; - let nonnull_ptr = unsafe { NonNull::new(raw_ptr).unwrap()}; + let nonnull_ptr = unsafe { NonNull::new(raw_ptr).unwrap() }; unsafe { let result = nonnull_ptr.read(); - kani::assert( *nonnull_ptr.as_ptr() == result, "read returns the correct value"); + kani::assert( + *nonnull_ptr.as_ptr() == result, + "read returns the correct value", + ); } } @@ -1943,10 +1982,13 @@ mod verify { const ARR_LEN: usize = 10000; let mut generator = PointerGenerator::::new(); let raw_ptr: *mut i8 = generator.any_in_bounds().ptr; - let nonnull_ptr = unsafe { NonNull::new(raw_ptr).unwrap()}; + let nonnull_ptr = unsafe { NonNull::new(raw_ptr).unwrap() }; unsafe { let result = nonnull_ptr.read_volatile(); - kani::assert( *nonnull_ptr.as_ptr() == result, "read returns the correct value"); + kani::assert( + *nonnull_ptr.as_ptr() == result, + "read returns the correct value", + ); } } @@ -1965,7 +2007,10 @@ mod verify { let unaligned_nonnull_ptr = NonNull::new(unaligned_ptr).unwrap(); unsafe { let result = unaligned_nonnull_ptr.read_unaligned(); - kani::assert( *unaligned_nonnull_ptr.as_ptr() == result, "read returns the correct value"); + kani::assert( + *unaligned_nonnull_ptr.as_ptr() == result, + "read returns the correct value", + ); } // read an unaligned value from a packed struct @@ -1987,7 +2032,7 @@ mod verify { const SIZE: usize = 100000; let mut generator = PointerGenerator::<100000>::new(); let raw_ptr: *mut i8 = generator.any_in_bounds().ptr; - let ptr = unsafe { NonNull::new(raw_ptr).unwrap()}; + let ptr = unsafe { NonNull::new(raw_ptr).unwrap() }; // Create a non-deterministic count value let count: usize = kani::any(); @@ -2001,7 +2046,9 @@ mod verify { pub fn non_null_check_addr() { // Create NonNull pointer & get pointer address let x = kani::any::() as *mut i32; - let Some(nonnull_xptr) = NonNull::new(x) else { return; }; + let Some(nonnull_xptr) = NonNull::new(x) else { + return; + }; let address = nonnull_xptr.addr(); } @@ -2010,7 +2057,9 @@ mod verify { pub fn non_null_check_align_offset() { // Create NonNull pointer let x = kani::any::() as *mut i32; - let Some(nonnull_xptr) = NonNull::new(x) else { return; }; + let Some(nonnull_xptr) = NonNull::new(x) else { + return; + }; // Call align_offset with valid align value let align: usize = kani::any(); @@ -2024,7 +2073,9 @@ mod verify { pub fn non_null_check_align_offset_negative() { // Create NonNull pointer let x = kani::any::() as *mut i8; - let Some(nonnull_xptr) = NonNull::new(x) else { return; }; + let Some(nonnull_xptr) = NonNull::new(x) else { + return; + }; // Generate align value that is not necessarily a power of two let invalid_align: usize = kani::any(); @@ -2118,10 +2169,7 @@ mod verify { const ARR_SIZE: usize = 100000; let mut arr: [i32; ARR_SIZE] = kani::any(); let raw_ptr = arr.as_mut_ptr(); - let ptr = NonNull::slice_from_raw_parts( - NonNull::new(raw_ptr).unwrap(), - ARR_SIZE, - ); + let ptr = NonNull::slice_from_raw_parts(NonNull::new(raw_ptr).unwrap(), ARR_SIZE); let lower = kani::any_where(|x| *x < ARR_SIZE); let upper = kani::any_where(|x| *x < ARR_SIZE && *x >= lower); unsafe { @@ -2156,10 +2204,9 @@ mod verify { struct Droppable { value: i32, } - + impl Drop for Droppable { - fn drop(&mut self) { - } + fn drop(&mut self) {} } let mut droppable = Droppable { value: kani::any() }; @@ -2189,15 +2236,13 @@ mod verify { } } - #[kani::proof_for_contract(NonNull::as_ptr)] pub fn non_null_check_as_ptr() { // Create a non-null pointer to a random value let non_null_ptr: *mut i32 = kani::any::() as *mut i32; - if let Some(ptr) = NonNull::new(non_null_ptr){ + if let Some(ptr) = NonNull::new(non_null_ptr) { let result = ptr.as_ptr(); } - } #[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] pub fn non_null_check_as_mut_ptr() { @@ -2211,7 +2256,7 @@ mod verify { pub fn non_null_check_cast() { // Create a non-null pointer to a random value let non_null_ptr: *mut i32 = kani::any::() as *mut i32; - if let Some(ptr) = NonNull::new(non_null_ptr){ + if let Some(ptr) = NonNull::new(non_null_ptr) { let result: NonNull = ptr.cast(); } } @@ -2224,6 +2269,3 @@ mod verify { let result = slice_ptr.as_non_null_ptr(); } } - - - From 87a482d3d9cb01cf7bd4a8f5ca58267be2e83462 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Fri, 22 Nov 2024 11:35:48 -0800 Subject: [PATCH 21/29] Revert "fixing indentation" This reverts commit 43e579ef3ce843fe2849947255ffa71aa3ec83a1. "incorrect fixing indentation" --- library/core/src/ptr/non_null.rs | 122 ++++++++++--------------------- 1 file changed, 40 insertions(+), 82 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 5e9b3da90f312..31691444ac346 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -138,8 +138,8 @@ impl NonNull { #[must_use] #[unstable(feature = "ptr_as_uninit", issue = "75402")] #[rustc_const_unstable(feature = "ptr_as_uninit", issue = "75402")] - #[requires(ub_checks::can_dereference(self.as_ptr()))] // Ensure the pointer is valid to create a reference. - #[ensures(|result: &&MaybeUninit| core::ptr::eq(*result, self.cast().as_ptr()))] // Ensure returned reference points to the correct memory location. + #[requires(ub_checks::can_dereference(self.as_ptr()))] // Ensure the pointer is valid to create a reference. + #[ensures(|result: &&MaybeUninit| core::ptr::eq(*result, self.cast().as_ptr()))] // Ensure returned reference points to the correct memory location. pub const unsafe fn as_uninit_ref<'a>(self) -> &'a MaybeUninit { // SAFETY: the caller must guarantee that `self` meets all the // requirements for a reference. @@ -164,8 +164,8 @@ impl NonNull { #[must_use] #[unstable(feature = "ptr_as_uninit", issue = "75402")] #[rustc_const_unstable(feature = "ptr_as_uninit", issue = "75402")] - #[requires(ub_checks::can_dereference(self.as_ptr()))] // Ensure pointer is valid to create a mutable reference. - #[ensures(|result: &&mut MaybeUninit| core::ptr::eq(*result, self.cast().as_ptr()))] // Ensure the returned reference points to the correct memory. + #[requires(ub_checks::can_dereference(self.as_ptr()))] // Ensure pointer is valid to create a mutable reference. + #[ensures(|result: &&mut MaybeUninit| core::ptr::eq(*result, self.cast().as_ptr()))] // Ensure the returned reference points to the correct memory. pub const unsafe fn as_uninit_mut<'a>(self) -> &'a mut MaybeUninit { // SAFETY: the caller must guarantee that `self` meets all the // requirements for a reference. @@ -248,11 +248,7 @@ impl NonNull { #[inline] pub const fn from_ref(r: &T) -> Self { // SAFETY: A reference cannot be null. - unsafe { - NonNull { - pointer: r as *const T, - } - } + unsafe { NonNull { pointer: r as *const T } } } /// Converts a mutable reference to a `NonNull` pointer. @@ -261,11 +257,7 @@ impl NonNull { #[inline] pub const fn from_mut(r: &mut T) -> Self { // SAFETY: A mutable reference cannot be null. - unsafe { - NonNull { - pointer: r as *mut T, - } - } + unsafe { NonNull { pointer: r as *mut T } } } /// Performs the same functionality as [`std::ptr::from_raw_parts`], except that a @@ -400,7 +392,7 @@ impl NonNull { #[must_use] #[inline(always)] #[requires(ub_checks::can_dereference(self.as_ptr() as *const()))] // Ensure input is convertible to a reference - #[ensures(|result: &&T| core::ptr::eq(*result, self.as_ptr()))] // Ensure returned reference matches pointer + #[ensures(|result: &&T| core::ptr::eq(*result, self.as_ptr()))] // Ensure returned reference matches pointer pub const unsafe fn as_ref<'a>(&self) -> &'a T { // SAFETY: the caller must guarantee that `self` meets all the // requirements for a reference. @@ -470,11 +462,7 @@ impl NonNull { #[ensures(|result: &NonNull| result.as_ptr().addr() == self.as_ptr().addr())] pub const fn cast(self) -> NonNull { // SAFETY: `self` is a `NonNull` pointer which is necessarily non-null - unsafe { - NonNull { - pointer: self.as_ptr() as *mut U, - } - } + unsafe { NonNull { pointer: self.as_ptr() as *mut U } } } /// Adds an offset to a pointer. @@ -526,11 +514,7 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { - NonNull { - pointer: intrinsics::offset(self.pointer, count), - } - } + unsafe { NonNull { pointer: intrinsics::offset(self.pointer, count) } } } /// Calculates the offset from a pointer in bytes. @@ -554,11 +538,7 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { - NonNull { - pointer: self.pointer.byte_offset(count), - } - } + unsafe { NonNull { pointer: self.pointer.byte_offset(count) } } } /// Adds an offset to a pointer (convenience for `.offset(count as isize)`). @@ -615,11 +595,7 @@ impl NonNull { // Additionally safety contract of `offset` guarantees that the resulting pointer is // pointing to an allocation, there can't be an allocation at null, thus it's safe to // construct `NonNull`. - unsafe { - NonNull { - pointer: intrinsics::offset(self.pointer, count), - } - } + unsafe { NonNull { pointer: intrinsics::offset(self.pointer, count) } } } /// Calculates the offset from a pointer in bytes (convenience for `.byte_offset(count as isize)`). @@ -643,11 +619,7 @@ impl NonNull { // Additionally safety contract of `add` guarantees that the resulting pointer is pointing // to an allocation, there can't be an allocation at null, thus it's safe to construct // `NonNull`. - unsafe { - NonNull { - pointer: self.pointer.byte_add(count), - } - } + unsafe { NonNull { pointer: self.pointer.byte_add(count) } } } /// Subtracts an offset from a pointer (convenience for @@ -730,11 +702,7 @@ impl NonNull { // Additionally safety contract of `sub` guarantees that the resulting pointer is pointing // to an allocation, there can't be an allocation at null, thus it's safe to construct // `NonNull`. - unsafe { - NonNull { - pointer: self.pointer.byte_sub(count), - } - } + unsafe { NonNull { pointer: self.pointer.byte_sub(count) } } } /// Calculates the distance between two pointers within the same allocation. The returned value is in @@ -1773,7 +1741,7 @@ impl NonNull<[T]> { #[requires(self.len().checked_mul(core::mem::size_of::()).is_some() && self.len() * core::mem::size_of::() <= isize::MAX as usize)] // Ensure the slice size does not exceed isize::MAX #[requires(kani::mem::same_allocation(self.as_ptr() as *const(), self.as_ptr().byte_add(self.len() * core::mem::size_of::()) as *const()))] // Ensure the slice is contained within a single allocation #[ensures(|result: &&mut [MaybeUninit]| result.len() == self.len())] // Length check - #[ensures(|result: &&mut [MaybeUninit]| core::ptr::eq(result.as_ptr(), self.cast().as_ptr()))] // Address check + #[ensures(|result: &&mut [MaybeUninit]| core::ptr::eq(result.as_ptr(), self.cast().as_ptr()))] // Address check pub const unsafe fn as_uninit_slice_mut<'a>(self) -> &'a mut [MaybeUninit] { // SAFETY: the caller must uphold the safety contract for `as_uninit_slice_mut`. unsafe { slice::from_raw_parts_mut(self.cast().as_ptr(), self.len()) } @@ -1916,7 +1884,7 @@ impl From<&T> for NonNull { } #[cfg(kani)] -#[unstable(feature = "kani", issue = "none")] +#[unstable(feature="kani", issue="none")] mod verify { use super::*; use crate::ptr::null_mut; @@ -1936,14 +1904,10 @@ mod verify { pub fn non_null_check_new() { let mut x: i32 = kani::any(); let xptr = &mut x; - let maybe_null_ptr = if kani::any() { - xptr as *mut i32 - } else { - null_mut() - }; + let maybe_null_ptr = if kani::any() { xptr as *mut i32 } else { null_mut() }; let _ = NonNull::new(maybe_null_ptr); } - + // pub const unsafe fn read(self) -> T where T: Sized #[kani::proof_for_contract(NonNull::read)] pub fn non_null_check_read() { @@ -1958,13 +1922,10 @@ mod verify { const ARR_LEN: usize = 10000; let mut generator = PointerGenerator::::new(); let raw_ptr: *mut i8 = generator.any_in_bounds().ptr; - let nonnull_ptr = unsafe { NonNull::new(raw_ptr).unwrap() }; + let nonnull_ptr = unsafe { NonNull::new(raw_ptr).unwrap()}; unsafe { let result = nonnull_ptr.read(); - kani::assert( - *nonnull_ptr.as_ptr() == result, - "read returns the correct value", - ); + kani::assert( *nonnull_ptr.as_ptr() == result, "read returns the correct value"); } } @@ -1982,13 +1943,10 @@ mod verify { const ARR_LEN: usize = 10000; let mut generator = PointerGenerator::::new(); let raw_ptr: *mut i8 = generator.any_in_bounds().ptr; - let nonnull_ptr = unsafe { NonNull::new(raw_ptr).unwrap() }; + let nonnull_ptr = unsafe { NonNull::new(raw_ptr).unwrap()}; unsafe { let result = nonnull_ptr.read_volatile(); - kani::assert( - *nonnull_ptr.as_ptr() == result, - "read returns the correct value", - ); + kani::assert( *nonnull_ptr.as_ptr() == result, "read returns the correct value"); } } @@ -2007,10 +1965,7 @@ mod verify { let unaligned_nonnull_ptr = NonNull::new(unaligned_ptr).unwrap(); unsafe { let result = unaligned_nonnull_ptr.read_unaligned(); - kani::assert( - *unaligned_nonnull_ptr.as_ptr() == result, - "read returns the correct value", - ); + kani::assert( *unaligned_nonnull_ptr.as_ptr() == result, "read returns the correct value"); } // read an unaligned value from a packed struct @@ -2032,7 +1987,7 @@ mod verify { const SIZE: usize = 100000; let mut generator = PointerGenerator::<100000>::new(); let raw_ptr: *mut i8 = generator.any_in_bounds().ptr; - let ptr = unsafe { NonNull::new(raw_ptr).unwrap() }; + let ptr = unsafe { NonNull::new(raw_ptr).unwrap()}; // Create a non-deterministic count value let count: usize = kani::any(); @@ -2046,9 +2001,7 @@ mod verify { pub fn non_null_check_addr() { // Create NonNull pointer & get pointer address let x = kani::any::() as *mut i32; - let Some(nonnull_xptr) = NonNull::new(x) else { - return; - }; + let Some(nonnull_xptr) = NonNull::new(x) else { return; }; let address = nonnull_xptr.addr(); } @@ -2057,9 +2010,7 @@ mod verify { pub fn non_null_check_align_offset() { // Create NonNull pointer let x = kani::any::() as *mut i32; - let Some(nonnull_xptr) = NonNull::new(x) else { - return; - }; + let Some(nonnull_xptr) = NonNull::new(x) else { return; }; // Call align_offset with valid align value let align: usize = kani::any(); @@ -2073,9 +2024,7 @@ mod verify { pub fn non_null_check_align_offset_negative() { // Create NonNull pointer let x = kani::any::() as *mut i8; - let Some(nonnull_xptr) = NonNull::new(x) else { - return; - }; + let Some(nonnull_xptr) = NonNull::new(x) else { return; }; // Generate align value that is not necessarily a power of two let invalid_align: usize = kani::any(); @@ -2169,7 +2118,10 @@ mod verify { const ARR_SIZE: usize = 100000; let mut arr: [i32; ARR_SIZE] = kani::any(); let raw_ptr = arr.as_mut_ptr(); - let ptr = NonNull::slice_from_raw_parts(NonNull::new(raw_ptr).unwrap(), ARR_SIZE); + let ptr = NonNull::slice_from_raw_parts( + NonNull::new(raw_ptr).unwrap(), + ARR_SIZE, + ); let lower = kani::any_where(|x| *x < ARR_SIZE); let upper = kani::any_where(|x| *x < ARR_SIZE && *x >= lower); unsafe { @@ -2204,9 +2156,10 @@ mod verify { struct Droppable { value: i32, } - + impl Drop for Droppable { - fn drop(&mut self) {} + fn drop(&mut self) { + } } let mut droppable = Droppable { value: kani::any() }; @@ -2236,13 +2189,15 @@ mod verify { } } + #[kani::proof_for_contract(NonNull::as_ptr)] pub fn non_null_check_as_ptr() { // Create a non-null pointer to a random value let non_null_ptr: *mut i32 = kani::any::() as *mut i32; - if let Some(ptr) = NonNull::new(non_null_ptr) { + if let Some(ptr) = NonNull::new(non_null_ptr){ let result = ptr.as_ptr(); } + } #[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] pub fn non_null_check_as_mut_ptr() { @@ -2256,7 +2211,7 @@ mod verify { pub fn non_null_check_cast() { // Create a non-null pointer to a random value let non_null_ptr: *mut i32 = kani::any::() as *mut i32; - if let Some(ptr) = NonNull::new(non_null_ptr) { + if let Some(ptr) = NonNull::new(non_null_ptr){ let result: NonNull = ptr.cast(); } } @@ -2269,3 +2224,6 @@ mod verify { let result = slice_ptr.as_non_null_ptr(); } } + + + From 32be6da47207a15e22865b9608102d135bfb2843 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 25 Nov 2024 16:49:51 -0800 Subject: [PATCH 22/29] Update library/core/src/ptr/non_null.rs Co-authored-by: Zyad Hassan <88045115+zhassan-aws@users.noreply.github.com> --- library/core/src/ptr/non_null.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 31691444ac346..60c7cbc30542e 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -2194,7 +2194,7 @@ mod verify { pub fn non_null_check_as_ptr() { // Create a non-null pointer to a random value let non_null_ptr: *mut i32 = kani::any::() as *mut i32; - if let Some(ptr) = NonNull::new(non_null_ptr){ + if let Some(ptr) = NonNull::new(non_null_ptr) { let result = ptr.as_ptr(); } From a9e4fdab1b0637082bbedb6fe16a345fe8cf2f40 Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 25 Nov 2024 16:50:02 -0800 Subject: [PATCH 23/29] Update library/core/src/ptr/non_null.rs Co-authored-by: Zyad Hassan <88045115+zhassan-aws@users.noreply.github.com> --- library/core/src/ptr/non_null.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 60c7cbc30542e..c0247d902393c 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -2199,6 +2199,7 @@ mod verify { } } + #[kani::proof_for_contract(NonNull::<[T]>::as_mut_ptr)] pub fn non_null_check_as_mut_ptr() { const ARR_LEN: usize = 100; From 76e717d2f935813881d3cb5421188b3235ed970d Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 25 Nov 2024 16:50:11 -0800 Subject: [PATCH 24/29] Update library/core/src/ptr/non_null.rs Co-authored-by: Zyad Hassan <88045115+zhassan-aws@users.noreply.github.com> --- library/core/src/ptr/non_null.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index c0247d902393c..f96f025e10831 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -2212,7 +2212,7 @@ mod verify { pub fn non_null_check_cast() { // Create a non-null pointer to a random value let non_null_ptr: *mut i32 = kani::any::() as *mut i32; - if let Some(ptr) = NonNull::new(non_null_ptr){ + if let Some(ptr) = NonNull::new(non_null_ptr) { let result: NonNull = ptr.cast(); } } From c1586f833f62ea2acc14472738e19641de911feb Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Mon, 25 Nov 2024 16:50:20 -0800 Subject: [PATCH 25/29] Update library/core/src/ptr/non_null.rs Co-authored-by: Zyad Hassan <88045115+zhassan-aws@users.noreply.github.com> --- library/core/src/ptr/non_null.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index f96f025e10831..694cdbcdf3265 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -2216,6 +2216,7 @@ mod verify { let result: NonNull = ptr.cast(); } } + #[kani::proof_for_contract(NonNull::<[T]>::as_non_null_ptr)] pub fn non_null_check_as_non_null_ptr() { const ARR_LEN: usize = 100; From 44cb515f163460375212e27635e74a27e7f180de Mon Sep 17 00:00:00 2001 From: Zyad Hassan Date: Tue, 26 Nov 2024 21:17:16 -0800 Subject: [PATCH 26/29] Revert changes to stdarch --- library/stdarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdarch b/library/stdarch index d9466edb4c53c..ff9a4445038ea 160000 --- a/library/stdarch +++ b/library/stdarch @@ -1 +1 @@ -Subproject commit d9466edb4c53cece8686ee6e17b028436ddf4151 +Subproject commit ff9a4445038eae46fd095188740946808581bc0e From d40409766736b546c93f45614e218fb46040b00b Mon Sep 17 00:00:00 2001 From: Dhvani-Kapadia <159494547+Dhvani-Kapadia@users.noreply.github.com> Date: Wed, 27 Nov 2024 12:04:30 -0800 Subject: [PATCH 27/29] Update non_null.rs --- library/core/src/ptr/non_null.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index f5e3e82096b60..92130a0566dfe 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -2381,7 +2381,7 @@ mod verify { let mut values: [i32; ARR_LEN] = kani::any(); let slice = kani::slice::any_slice_of_array_mut(&mut values); let non_null_ptr = NonNull::new(slice as *mut [i32]).unwrap(); - let result = slice_ptr.as_non_null_ptr(); + let result = non_null_ptr.as_non_null_ptr(); } #[kani::proof] From e9b4b377927d4b8d1f7fcc22fc95434bbb523eba Mon Sep 17 00:00:00 2001 From: Michael Tautschnig Date: Thu, 28 Nov 2024 10:32:37 +0100 Subject: [PATCH 28/29] Remove blank lines --- library/core/src/ptr/non_null.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index 92130a0566dfe..f288c70617d2b 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -2519,6 +2519,3 @@ mod verify { } } } - - - From 152d68ef1385544dd90c9314fd9d3639fbd2629c Mon Sep 17 00:00:00 2001 From: Zyad Hassan Date: Wed, 4 Dec 2024 14:14:14 -0800 Subject: [PATCH 29/29] Remove rustc_const_unstable attribute --- library/core/src/ptr/non_null.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/library/core/src/ptr/non_null.rs b/library/core/src/ptr/non_null.rs index a8b281680da60..4174377a84408 100644 --- a/library/core/src/ptr/non_null.rs +++ b/library/core/src/ptr/non_null.rs @@ -1474,7 +1474,6 @@ impl NonNull<[T]> { #[inline] #[must_use] #[unstable(feature = "slice_ptr_get", issue = "74265")] - #[rustc_const_unstable(feature = "slice_ptr_get", issue = "74265")] // Address preservation #[ensures(|result: &NonNull| result.as_ptr().addr() == self.as_ptr().addr())] pub const fn as_non_null_ptr(self) -> NonNull {