2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-06-02 19:30:29 -05:00
--> $DIR/ub-wide-ptr.rs:37:1
2021-03-31 04:33:45 -05:00
|
LL | const STR_TOO_LONG: &str = unsafe { mem::transmute((&42u8, 999usize)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a dangling reference (going beyond the bounds of its allocation)
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾─allocN──╼ e7 03 00 00 │ ╾──╼....
}
error[E0080]: it is undefined behavior to use this value
2022-06-02 19:30:29 -05:00
--> $DIR/ub-wide-ptr.rs:39:1
2021-03-31 04:33:45 -05:00
|
LL | const NESTED_STR_MUCH_TOO_LONG: (&str,) = (unsafe { mem::transmute((&42, usize::MAX)) },);
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .0: encountered invalid reference metadata: slice is bigger than largest supported object
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾─allocN─╼ ff ff ff ff │ ╾──╼....
}
2022-06-02 19:30:29 -05:00
error: any use of this value will cause an error
--> $DIR/ub-wide-ptr.rs:42:1
2021-03-31 04:33:45 -05:00
|
LL | const STR_LENGTH_PTR: &str = unsafe { mem::transmute((&42u8, &3)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ unable to turn pointer into raw bytes
2021-03-31 04:33:45 -05:00
|
2022-06-02 19:30:29 -05:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-08-27 16:46:14 -05:00
= 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
2022-09-18 10:55:36 -05:00
= note: `#[deny(const_err)]` on by default
2021-03-31 04:33:45 -05:00
2022-06-02 19:30:29 -05:00
error: any use of this value will cause an error
2021-03-31 04:33:45 -05:00
--> $DIR/ub-wide-ptr.rs:46:1
|
LL | const MY_STR_LENGTH_PTR: &MyStr = unsafe { mem::transmute((&42u8, &3)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unable to turn pointer into raw bytes
2021-03-31 04:33:45 -05:00
|
2022-06-02 19:30:29 -05:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-08-27 16:46:14 -05:00
= 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
2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-06-02 19:30:29 -05:00
--> $DIR/ub-wide-ptr.rs:49:1
2021-03-31 04:33:45 -05:00
|
LL | const MY_STR_MUCH_TOO_LONG: &MyStr = unsafe { mem::transmute((&42u8, usize::MAX)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered invalid reference metadata: slice is bigger than largest supported object
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾─allocN─╼ ff ff ff ff │ ╾──╼....
}
error[E0080]: it is undefined behavior to use this value
2022-06-02 19:30:29 -05:00
--> $DIR/ub-wide-ptr.rs:53:1
2021-03-31 04:33:45 -05:00
|
LL | const STR_NO_INIT: &str = unsafe { mem::transmute::<&[_], _>(&[MaybeUninit::<u8> { uninit: () }]) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>: encountered uninitialized data in `str`
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾─allocN─╼ 01 00 00 00 │ ╾──╼....
}
error[E0080]: it is undefined behavior to use this value
2022-06-02 19:30:29 -05:00
--> $DIR/ub-wide-ptr.rs:56:1
2021-03-31 04:33:45 -05:00
|
LL | const MYSTR_NO_INIT: &MyStr = unsafe { mem::transmute::<&[_], _>(&[MaybeUninit::<u8> { uninit: () }]) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>.0: encountered uninitialized data in `str`
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾─allocN─╼ 01 00 00 00 │ ╾──╼....
}
2022-08-01 18:05:20 -05:00
error[E0080]: evaluation of constant value failed
2022-06-02 19:30:29 -05:00
--> $DIR/ub-wide-ptr.rs:63:1
2021-03-31 04:33:45 -05:00
|
2022-02-13 09:27:59 -06:00
LL | const SLICE_LENGTH_UNINIT: &[u8] = unsafe {
2022-08-01 18:05:20 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using uninitialized data, but this operation requires initialized memory
2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:70:1
2021-03-31 04:33:45 -05:00
|
LL | const SLICE_TOO_LONG: &[u8] = unsafe { mem::transmute((&42u8, 999usize)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a dangling reference (going beyond the bounds of its allocation)
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾─allocN─╼ e7 03 00 00 │ ╾──╼....
}
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:73:1
2021-03-31 04:33:45 -05:00
|
2022-03-27 19:02:11 -05:00
LL | const SLICE_TOO_LONG_OVERFLOW: &[u32] = unsafe { mem::transmute((&42u32, isize::MAX)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered invalid reference metadata: slice is bigger than largest supported object
2022-03-27 19:02:11 -05:00
|
= 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: 8, align: 4) {
╾─allocN─╼ ff ff ff 7f │ ╾──╼....
}
2022-06-02 19:30:29 -05:00
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:76:1
2022-03-27 19:02:11 -05:00
|
2021-03-31 04:33:45 -05:00
LL | const SLICE_LENGTH_PTR: &[u8] = unsafe { mem::transmute((&42u8, &3)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unable to turn pointer into raw bytes
2021-03-31 04:33:45 -05:00
|
2022-06-02 19:30:29 -05:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-08-27 16:46:14 -05:00
= 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
2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:80:1
2021-03-31 04:33:45 -05:00
|
LL | const SLICE_TOO_LONG_BOX: Box<[u8]> = unsafe { mem::transmute((&42u8, 999usize)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a dangling box (going beyond the bounds of its allocation)
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾─allocN─╼ e7 03 00 00 │ ╾──╼....
}
2022-06-02 19:30:29 -05:00
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:83:1
2021-03-31 04:33:45 -05:00
|
LL | const SLICE_LENGTH_PTR_BOX: Box<[u8]> = unsafe { mem::transmute((&42u8, &3)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unable to turn pointer into raw bytes
2021-03-31 04:33:45 -05:00
|
2022-06-02 19:30:29 -05:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-08-27 16:46:14 -05:00
= 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
2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:88:1
2021-03-31 04:33:45 -05:00
|
LL | const SLICE_CONTENT_INVALID: &[bool] = &[unsafe { mem::transmute(3u8) }];
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>[0]: encountered 0x03, but expected a boolean
2021-03-31 04:33:45 -05:00
|
= 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: 4, align: 4) {
╾─allocN─╼ │ ╾──╼
}
2022-06-07 12:29:13 -05:00
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:88:40
2022-06-07 12:29:13 -05:00
|
LL | const SLICE_CONTENT_INVALID: &[bool] = &[unsafe { mem::transmute(3u8) }];
2022-02-13 09:27:59 -06:00
| ------------------------------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
2022-06-07 12:29:13 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:96:1
2021-03-31 04:33:45 -05:00
|
LL | const MYSLICE_PREFIX_BAD: &MySliceBool = &MySlice(unsafe { mem::transmute(3u8) }, [false]);
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>.0: encountered 0x03, but expected a boolean
2021-03-31 04:33:45 -05:00
|
= 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: 4, align: 4) {
2022-03-27 19:02:11 -05:00
╾allocN─╼ │ ╾──╼
2021-03-31 04:33:45 -05:00
}
2022-06-07 12:29:13 -05:00
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:96:42
2022-06-07 12:29:13 -05:00
|
LL | const MYSLICE_PREFIX_BAD: &MySliceBool = &MySlice(unsafe { mem::transmute(3u8) }, [false]);
2022-02-13 09:27:59 -06:00
| -------------------------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
2022-06-07 12:29:13 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:101:1
2021-03-31 04:33:45 -05:00
|
LL | const MYSLICE_SUFFIX_BAD: &MySliceBool = &MySlice(true, [unsafe { mem::transmute(3u8) }]);
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>.1[0]: encountered 0x03, but expected a boolean
2021-03-31 04:33:45 -05:00
|
= 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: 4, align: 4) {
2022-03-27 19:02:11 -05:00
╾allocN─╼ │ ╾──╼
2021-03-31 04:33:45 -05:00
}
2022-06-07 12:29:13 -05:00
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:101:42
2022-06-07 12:29:13 -05:00
|
LL | const MYSLICE_SUFFIX_BAD: &MySliceBool = &MySlice(true, [unsafe { mem::transmute(3u8) }]);
2022-02-13 09:27:59 -06:00
| -------------------------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
2022-06-07 12:29:13 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-08-01 18:05:20 -05:00
error[E0080]: evaluation of constant value failed
--> $DIR/ub-wide-ptr.rs:110:1
2021-03-31 04:33:45 -05:00
|
2022-02-13 09:27:59 -06:00
LL | const RAW_SLICE_LENGTH_UNINIT: *const [u8] = unsafe {
2022-08-01 18:05:20 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using uninitialized data, but this operation requires initialized memory
2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:119:1
2021-03-31 04:33:45 -05:00
|
LL | const TRAIT_OBJ_SHORT_VTABLE_1: W<&dyn Trait> = unsafe { mem::transmute(W((&92u8, &3u8))) };
2022-07-17 15:02:49 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .0: encountered allocN, but expected a vtable pointer
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾allocN─╼ ╾allocN─╼ │ ╾──╼╾──╼
}
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:123:1
2021-03-31 04:33:45 -05:00
|
LL | const TRAIT_OBJ_SHORT_VTABLE_2: W<&dyn Trait> = unsafe { mem::transmute(W((&92u8, &3u64))) };
2022-07-17 15:02:49 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .0: encountered allocN, but expected a vtable pointer
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾allocN─╼ ╾allocN─╼ │ ╾──╼╾──╼
}
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:127:1
2021-03-31 04:33:45 -05:00
|
LL | const TRAIT_OBJ_INT_VTABLE: W<&dyn Trait> = unsafe { mem::transmute(W((&92u8, 4usize))) };
2022-07-17 15:02:49 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .0: encountered 0x4[noalloc], but expected a vtable pointer
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾allocN─╼ 04 00 00 00 │ ╾──╼....
}
2022-07-17 15:02:49 -05:00
error[E0080]: evaluation of constant value failed
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:130:57
2021-03-31 04:33:45 -05:00
|
LL | const TRAIT_OBJ_UNALIGNED_VTABLE: &dyn Trait = unsafe { mem::transmute((&92u8, &[0u8; 128])) };
2022-07-17 15:02:49 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using allocN as vtable pointer but it does not point to a vtable
2021-03-31 04:33:45 -05:00
2022-07-17 15:02:49 -05:00
error[E0080]: evaluation of constant value failed
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:133:57
2021-03-31 04:33:45 -05:00
|
LL | const TRAIT_OBJ_BAD_DROP_FN_NULL: &dyn Trait = unsafe { mem::transmute((&92u8, &[0usize; 8])) };
2022-07-17 15:02:49 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using allocN as vtable pointer but it does not point to a vtable
2021-03-31 04:33:45 -05:00
2022-07-17 15:02:49 -05:00
error[E0080]: evaluation of constant value failed
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:136:56
2021-03-31 04:33:45 -05:00
|
LL | const TRAIT_OBJ_BAD_DROP_FN_INT: &dyn Trait = unsafe { mem::transmute((&92u8, &[1usize; 8])) };
2022-07-17 15:02:49 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using allocN as vtable pointer but it does not point to a vtable
2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:139:1
2021-03-31 04:33:45 -05:00
|
LL | const TRAIT_OBJ_BAD_DROP_FN_NOT_FN_PTR: W<&dyn Trait> = unsafe { mem::transmute(W((&92u8, &[&42u8; 8]))) };
2022-07-17 15:02:49 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .0: encountered allocN, but expected a vtable pointer
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾allocN─╼ ╾allocN─╼ │ ╾──╼╾──╼
}
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:144:1
2021-03-31 04:33:45 -05:00
|
LL | const TRAIT_OBJ_CONTENT_INVALID: &dyn Trait = unsafe { mem::transmute::<_, &bool>(&3u8) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at .<deref>.<dyn-downcast>: encountered 0x03, but expected a boolean
2021-03-31 04:33:45 -05:00
|
= 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: 8, align: 4) {
╾allocN─╼ ╾allocN─╼ │ ╾──╼╾──╼
}
2022-08-06 16:18:59 -05:00
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:149:1
2021-03-31 04:33:45 -05:00
|
LL | const RAW_TRAIT_OBJ_VTABLE_NULL: *const dyn Trait = unsafe { mem::transmute((&92u8, 0usize)) };
2022-08-06 16:18:59 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered null pointer, but expected a vtable pointer
|
= 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: 8, align: 4) {
╾allocN─╼ 00 00 00 00 │ ╾──╼....
}
2021-03-31 04:33:45 -05:00
2022-08-06 16:18:59 -05:00
error[E0080]: it is undefined behavior to use this value
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:151:1
2021-03-31 04:33:45 -05:00
|
LL | const RAW_TRAIT_OBJ_VTABLE_INVALID: *const dyn Trait = unsafe { mem::transmute((&92u8, &3u64)) };
2022-08-06 16:18:59 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered allocN, but expected a vtable pointer
|
= 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: 8, align: 4) {
╾allocN─╼ ╾allocN─╼ │ ╾──╼╾──╼
}
2021-03-31 04:33:45 -05:00
error[E0080]: could not evaluate static initializer
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:157:5
2021-03-31 04:33:45 -05:00
|
LL | mem::transmute::<_, &dyn Trait>((&92u8, 0usize))
2022-07-17 15:02:49 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ out-of-bounds pointer use: null pointer is a dangling pointer (it has no provenance)
2021-03-31 04:33:45 -05:00
error[E0080]: could not evaluate static initializer
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:161:5
2021-03-31 04:33:45 -05:00
|
LL | mem::transmute::<_, &dyn Trait>((&92u8, &3u64))
2022-07-17 15:02:49 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using allocN as vtable pointer but it does not point to a vtable
2021-03-31 04:33:45 -05:00
2022-06-07 12:29:13 -05:00
error: aborting due to 32 previous errors
2021-03-31 04:33:45 -05:00
For more information about this error, try `rustc --explain E0080`.
2022-06-25 08:31:36 -05:00
Future incompatibility report: Future breakage diagnostic:
error: any use of this value will cause an error
--> $DIR/ub-wide-ptr.rs:42:1
|
LL | const STR_LENGTH_PTR: &str = unsafe { mem::transmute((&42u8, &3)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ unable to turn pointer into raw bytes
2022-06-25 08:31:36 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-08-27 16:46:14 -05:00
= 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
2022-09-18 10:55:36 -05:00
= note: `#[deny(const_err)]` on by default
2022-06-25 08:31:36 -05:00
Future breakage diagnostic:
error: any use of this value will cause an error
--> $DIR/ub-wide-ptr.rs:46:1
|
LL | const MY_STR_LENGTH_PTR: &MyStr = unsafe { mem::transmute((&42u8, &3)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unable to turn pointer into raw bytes
2022-06-25 08:31:36 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-08-27 16:46:14 -05:00
= 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
2022-09-18 10:55:36 -05:00
= note: `#[deny(const_err)]` on by default
2022-06-25 08:31:36 -05:00
Future breakage diagnostic:
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:76:1
2022-06-25 08:31:36 -05:00
|
LL | const SLICE_LENGTH_PTR: &[u8] = unsafe { mem::transmute((&42u8, &3)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unable to turn pointer into raw bytes
2022-06-25 08:31:36 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-08-27 16:46:14 -05:00
= 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
2022-09-18 10:55:36 -05:00
= note: `#[deny(const_err)]` on by default
2022-06-25 08:31:36 -05:00
Future breakage diagnostic:
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:83:1
2022-06-25 08:31:36 -05:00
|
LL | const SLICE_LENGTH_PTR_BOX: Box<[u8]> = unsafe { mem::transmute((&42u8, &3)) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unable to turn pointer into raw bytes
2022-06-25 08:31:36 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-08-27 16:46:14 -05:00
= 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
2022-09-18 10:55:36 -05:00
= note: `#[deny(const_err)]` on by default
2022-06-25 08:31:36 -05:00
Future breakage diagnostic:
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:88:40
2022-06-25 08:31:36 -05:00
|
LL | const SLICE_CONTENT_INVALID: &[bool] = &[unsafe { mem::transmute(3u8) }];
2022-02-13 09:27:59 -06:00
| ------------------------------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
2022-06-25 08:31:36 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-09-18 10:55:36 -05:00
= note: `#[deny(const_err)]` on by default
2022-06-25 08:31:36 -05:00
Future breakage diagnostic:
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:96:42
2022-06-25 08:31:36 -05:00
|
LL | const MYSLICE_PREFIX_BAD: &MySliceBool = &MySlice(unsafe { mem::transmute(3u8) }, [false]);
2022-02-13 09:27:59 -06:00
| -------------------------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
2022-06-25 08:31:36 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-09-18 10:55:36 -05:00
= note: `#[deny(const_err)]` on by default
2022-06-25 08:31:36 -05:00
Future breakage diagnostic:
error: any use of this value will cause an error
2022-08-01 18:05:20 -05:00
--> $DIR/ub-wide-ptr.rs:101:42
2022-06-25 08:31:36 -05:00
|
LL | const MYSLICE_SUFFIX_BAD: &MySliceBool = &MySlice(true, [unsafe { mem::transmute(3u8) }]);
2022-02-13 09:27:59 -06:00
| -------------------------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
2022-06-25 08:31:36 -05:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2022-09-18 10:55:36 -05:00
= note: `#[deny(const_err)]` on by default
2022-06-25 08:31:36 -05:00