
For macros that are implemented on the compiler, we do *not* mention the `-Zmacro-backtrace` flag. This includes `derive`s and standard macros.
201 lines
11 KiB
Text
201 lines
11 KiB
Text
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:16:1
|
|
|
|
|
LL | pub static S0: &[u32] = unsafe { from_raw_parts(ptr::null(), 0) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a null reference
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:18:1
|
|
|
|
|
LL | pub static S1: &[()] = unsafe { from_raw_parts(ptr::null(), 0) };
|
|
| ^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a null reference
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:22:1
|
|
|
|
|
LL | pub static S2: &[u32] = unsafe { from_raw_parts(&D0, 2) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a dangling reference (going beyond the bounds of its allocation)
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:26:1
|
|
|
|
|
LL | pub static S4: &[u8] = unsafe { from_raw_parts((&D1) as *const _ as _, 1) };
|
|
| ^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>[0]: encountered uninitialized memory, but expected an integer
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:28:1
|
|
|
|
|
LL | pub static S5: &[u8] = unsafe { from_raw_parts((&D3) as *const _ as _, size_of::<&u32>()) };
|
|
| ^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>[0]: encountered a pointer, but expected an integer
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
= help: this code performed an operation that depends on the underlying bytes representing a pointer
|
|
= help: the absolute address of a pointer is not known at compile-time, so such operations are not supported
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:30:1
|
|
|
|
|
LL | pub static S6: &[bool] = unsafe { from_raw_parts((&D0) as *const _ as _, 4) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>[0]: encountered 0x11, but expected a boolean
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:33:1
|
|
|
|
|
LL | pub static S7: &[u16] = unsafe {
|
|
| ^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>[1]: encountered uninitialized memory, but expected an integer
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:41:1
|
|
|
|
|
LL | pub static S8: &[u64] = unsafe {
|
|
| ^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a dangling reference (going beyond the bounds of its allocation)
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:48:1
|
|
|
|
|
LL | pub static R0: &[u32] = unsafe { from_ptr_range(ptr::null()..ptr::null()) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a null reference
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: could not evaluate static initializer
|
|
--> $DIR/forbidden_slices.rs:50:33
|
|
|
|
|
LL | pub static R1: &[()] = unsafe { from_ptr_range(ptr::null()..ptr::null()) }; // errors inside libcore
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation panicked: assertion failed: 0 < pointee_size && pointee_size <= isize::MAX as usize
|
|
|
|
|
note: inside `from_ptr_range::<'_, ()>`
|
|
--> $SRC_DIR/core/src/slice/raw.rs:LL:COL
|
|
note: inside `std::ptr::const_ptr::<impl *const ()>::offset_from_unsigned`
|
|
--> $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL
|
|
|
|
error[E0080]: could not evaluate static initializer
|
|
--> $DIR/forbidden_slices.rs:54:25
|
|
|
|
|
LL | from_ptr_range(ptr..ptr.add(2)) // errors inside libcore
|
|
| ^^^^^^^^^^ out-of-bounds pointer arithmetic: expected a pointer to 8 bytes of memory, but got ALLOC10 which is only 4 bytes from the end of the allocation
|
|
|
|
|
note: inside `std::ptr::const_ptr::<impl *const u32>::add`
|
|
--> $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:57:1
|
|
|
|
|
LL | pub static R4: &[u8] = unsafe {
|
|
| ^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>[0]: encountered uninitialized memory, but expected an integer
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:62:1
|
|
|
|
|
LL | pub static R5: &[u8] = unsafe {
|
|
| ^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>[0]: encountered a pointer, but expected an integer
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
= help: this code performed an operation that depends on the underlying bytes representing a pointer
|
|
= help: the absolute address of a pointer is not known at compile-time, so such operations are not supported
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:67:1
|
|
|
|
|
LL | pub static R6: &[bool] = unsafe {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>[0]: encountered 0x11, but expected a boolean
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: it is undefined behavior to use this value
|
|
--> $DIR/forbidden_slices.rs:72:1
|
|
|
|
|
LL | pub static R7: &[u16] = unsafe {
|
|
| ^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered an unaligned reference (required 2 byte alignment but found 1)
|
|
|
|
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
|
|
= note: the raw bytes of the constant (size: $SIZE, align: $ALIGN) {
|
|
HEX_DUMP
|
|
}
|
|
|
|
error[E0080]: could not evaluate static initializer
|
|
--> $DIR/forbidden_slices.rs:79:25
|
|
|
|
|
LL | from_ptr_range(ptr..ptr.add(1))
|
|
| ^^^^^^^^^^ out-of-bounds pointer arithmetic: expected a pointer to 8 bytes of memory, but got ALLOC11+0x1 which is only 7 bytes from the end of the allocation
|
|
|
|
|
note: inside `std::ptr::const_ptr::<impl *const u64>::add`
|
|
--> $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL
|
|
|
|
error[E0080]: could not evaluate static initializer
|
|
--> $DIR/forbidden_slices.rs:85:34
|
|
|
|
|
LL | pub static R9: &[u32] = unsafe { from_ptr_range(&D0..(&D0 as *const u32).add(1)) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `ptr_offset_from_unsigned` called on two different pointers that are not both derived from the same allocation
|
|
|
|
|
note: inside `from_ptr_range::<'_, u32>`
|
|
--> $SRC_DIR/core/src/slice/raw.rs:LL:COL
|
|
note: inside `std::ptr::const_ptr::<impl *const u32>::offset_from_unsigned`
|
|
--> $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL
|
|
|
|
error[E0080]: could not evaluate static initializer
|
|
--> $DIR/forbidden_slices.rs:87:35
|
|
|
|
|
LL | pub static R10: &[u32] = unsafe { from_ptr_range(&D0..&D0) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ `ptr_offset_from_unsigned` called on two different pointers that are not both derived from the same allocation
|
|
|
|
|
note: inside `from_ptr_range::<'_, u32>`
|
|
--> $SRC_DIR/core/src/slice/raw.rs:LL:COL
|
|
note: inside `std::ptr::const_ptr::<impl *const u32>::offset_from_unsigned`
|
|
--> $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL
|
|
|
|
error: aborting due to 18 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|