about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/test/ui/const-eval/const_raw_ptr_ops.rs2
-rw-r--r--src/test/ui/const-eval/promoted_raw_ptr_ops.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/const-eval/const_raw_ptr_ops.rs b/src/test/ui/const-eval/const_raw_ptr_ops.rs
index 9121c67b8b9..2aff6a7c55c 100644
--- a/src/test/ui/const-eval/const_raw_ptr_ops.rs
+++ b/src/test/ui/const-eval/const_raw_ptr_ops.rs
@@ -24,4 +24,4 @@ const Y2: usize = &1 as *const i32 as usize + 1; //~ ERROR cannot be used
 const Z: i32 = unsafe { *(&1 as *const i32) };
 // unconst and bad, will thus error in miri
 const Z2: i32 = unsafe { *(42 as *const i32) }; //~ ERROR cannot be used
-const Z3: i32 = unsafe { *(44 as *const i32) }; //~ ERROR cannot be used
\ No newline at end of file
+const Z3: i32 = unsafe { *(44 as *const i32) }; //~ ERROR cannot be used
diff --git a/src/test/ui/const-eval/promoted_raw_ptr_ops.rs b/src/test/ui/const-eval/promoted_raw_ptr_ops.rs
index 30e7648f04d..3b437f69d8d 100644
--- a/src/test/ui/const-eval/promoted_raw_ptr_ops.rs
+++ b/src/test/ui/const-eval/promoted_raw_ptr_ops.rs
@@ -15,4 +15,4 @@ fn main() {
     //~^ ERROR does not live long enough
     let y: &'static usize = &(&1 as *const i32 as usize + 1); //~ ERROR does not live long enough
     let z: &'static i32 = &(unsafe { *(42 as *const i32) }); //~ ERROR does not live long enough
-}
\ No newline at end of file
+}