From 4b731a908b3df2a926eae5fb5233dbc73b098276 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Fri, 3 Aug 2018 14:22:22 +0200 Subject: [PATCH] Fix tidy --- src/test/ui/const-eval/const_raw_ptr_ops.rs | 2 +- src/test/ui/const-eval/promoted_raw_ptr_ops.rs | 2 +- 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 +}