summary refs log tree commit diff
path: root/src/test/ui/consts/offset_from_ub.stderr
blob: 24da983cf0868088db004d9d7b8f894b38bb202b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
error: any use of this value will cause an error
  --> $SRC_DIR/libcore/ptr/const_ptr.rs:LL:COL
   |
LL |           intrinsics::ptr_offset_from(self, origin)
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |           |
   |           ptr_offset_from cannot compute offset of pointers into different allocations.
   |           inside call to `std::ptr::const_ptr::<impl *const Struct>::offset_from` at $DIR/offset_from_ub.rs:22:27
   | 
  ::: $DIR/offset_from_ub.rs:16:1
   |
LL | / pub const DIFFERENT_ALLOC: usize = {
LL | |
LL | |     let uninit = std::mem::MaybeUninit::<Struct>::uninit();
LL | |     let base_ptr: *const Struct = &uninit as *const _ as *const Struct;
...  |
LL | |     offset as usize
LL | | };
   | |__-
   |
   = note: `#[deny(const_err)]` on by default

error: any use of this value will cause an error
  --> $SRC_DIR/libcore/ptr/const_ptr.rs:LL:COL
   |
LL |           intrinsics::ptr_offset_from(self, origin)
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |           |
   |           a memory access tried to interpret some bytes as a pointer
   |           inside call to `std::ptr::const_ptr::<impl *const u8>::offset_from` at $DIR/offset_from_ub.rs:28:14
   | 
  ::: $DIR/offset_from_ub.rs:26:1
   |
LL | / pub const NOT_PTR: usize = {
LL | |
LL | |     unsafe { (42 as *const u8).offset_from(&5u8) as usize }
LL | | };
   | |__-

error: any use of this value will cause an error
  --> $SRC_DIR/libcore/ptr/const_ptr.rs:LL:COL
   |
LL |           intrinsics::ptr_offset_from(self, origin)
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |           |
   |           exact_div: 1 cannot be divided by 2 without remainder
   |           inside call to `std::ptr::const_ptr::<impl *const u16>::offset_from` at $DIR/offset_from_ub.rs:36:14
   | 
  ::: $DIR/offset_from_ub.rs:31:1
   |
LL | / pub const NOT_MULTIPLE_OF_SIZE: isize = {
LL | |
LL | |     let data = [5u8, 6, 7];
LL | |     let base_ptr = data.as_ptr();
LL | |     let field_ptr = &data[1] as *const u8 as *const u16;
LL | |     unsafe { field_ptr.offset_from(base_ptr as *const u16) }
LL | | };
   | |__-

error: any use of this value will cause an error
  --> $SRC_DIR/libcore/ptr/const_ptr.rs:LL:COL
   |
LL |           intrinsics::ptr_offset_from(self, origin)
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |           |
   |           invalid use of NULL pointer
   |           inside call to `std::ptr::const_ptr::<impl *const u8>::offset_from` at $DIR/offset_from_ub.rs:42:14
   | 
  ::: $DIR/offset_from_ub.rs:39:1
   |
LL | / pub const OFFSET_FROM_NULL: isize = {
LL | |
LL | |     let ptr = 0 as *const u8;
LL | |     unsafe { ptr.offset_from(ptr) }
LL | | };
   | |__-

error: any use of this value will cause an error
  --> $SRC_DIR/libcore/ptr/const_ptr.rs:LL:COL
   |
LL |           intrinsics::ptr_offset_from(self, origin)
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |           |
   |           a memory access tried to interpret some bytes as a pointer
   |           inside call to `std::ptr::const_ptr::<impl *const u8>::offset_from` at $DIR/offset_from_ub.rs:49:14
   | 
  ::: $DIR/offset_from_ub.rs:45:1
   |
LL | / pub const DIFFERENT_INT: isize = { // offset_from with two different integers: like DIFFERENT_ALLOC
LL | |
LL | |     let ptr1 = 8 as *const u8;
LL | |     let ptr2 = 16 as *const u8;
LL | |     unsafe { ptr2.offset_from(ptr1) }
LL | | };
   | |__-

error: aborting due to 5 previous errors