From: Oliver Schneider Date: Fri, 3 Aug 2018 12:22:22 +0000 (+0200) Subject: Fix tidy X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=4b731a908b3df2a926eae5fb5233dbc73b098276;p=rust.git Fix tidy --- 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 @@ fn main() {} 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 +}