summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-eval/raw-pointer-ub.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:42 +0000
commitcec1877e180393eba0f6ddb0cf97bf3a791631c7 (patch)
tree47b4dac2a9dd9a40c30c251b4d4a72d7ccf77e9f /tests/ui/consts/const-eval/raw-pointer-ub.rs
parentAdding debian version 1.74.1+dfsg1-1. (diff)
downloadrustc-cec1877e180393eba0f6ddb0cf97bf3a791631c7.tar.xz
rustc-cec1877e180393eba0f6ddb0cf97bf3a791631c7.zip
Merging upstream version 1.75.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/consts/const-eval/raw-pointer-ub.rs')
-rw-r--r--tests/ui/consts/const-eval/raw-pointer-ub.rs45
1 files changed, 45 insertions, 0 deletions
diff --git a/tests/ui/consts/const-eval/raw-pointer-ub.rs b/tests/ui/consts/const-eval/raw-pointer-ub.rs
new file mode 100644
index 000000000..3341f3c78
--- /dev/null
+++ b/tests/ui/consts/const-eval/raw-pointer-ub.rs
@@ -0,0 +1,45 @@
+#![feature(const_mut_refs)]
+
+
+const MISALIGNED_LOAD: () = unsafe {
+ let mem = [0u32; 8];
+ let ptr = mem.as_ptr().byte_add(1);
+ let _val = *ptr; //~ERROR: evaluation of constant value failed
+ //~^NOTE: based on pointer with alignment 1, but alignment 4 is required
+};
+
+const MISALIGNED_STORE: () = unsafe {
+ let mut mem = [0u32; 8];
+ let ptr = mem.as_mut_ptr().byte_add(1);
+ *ptr = 0; //~ERROR: evaluation of constant value failed
+ //~^NOTE: based on pointer with alignment 1, but alignment 4 is required
+};
+
+const MISALIGNED_COPY: () = unsafe {
+ let x = &[0_u8; 4];
+ let y = x.as_ptr().cast::<u32>();
+ let mut z = 123;
+ y.copy_to_nonoverlapping(&mut z, 1);
+ //~^NOTE
+ // The actual error points into the implementation of `copy_to_nonoverlapping`.
+};
+
+const MISALIGNED_FIELD: () = unsafe {
+ #[repr(align(16))]
+ struct Aligned(f32);
+
+ let mem = [0f32; 8];
+ let ptr = mem.as_ptr().cast::<Aligned>();
+ // Accessing an f32 field but we still require the alignment of the pointer type.
+ let _val = (*ptr).0; //~ERROR: evaluation of constant value failed
+ //~^NOTE: based on pointer with alignment 4, but alignment 16 is required
+};
+
+const OOB: () = unsafe {
+ let mem = [0u32; 1];
+ let ptr = mem.as_ptr().cast::<u64>();
+ let _val = *ptr; //~ERROR: evaluation of constant value failed
+ //~^NOTE: size 4, so pointer to 8 bytes starting at offset 0 is out-of-bounds
+};
+
+fn main() {}