about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--example/mini_core_hello_world.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/example/mini_core_hello_world.rs b/example/mini_core_hello_world.rs
index 39076f4902e..c323e72ba78 100644
--- a/example/mini_core_hello_world.rs
+++ b/example/mini_core_hello_world.rs
@@ -344,10 +344,8 @@ fn main() {
     #[repr(simd)]
     struct V([f64; 2]);
 
-    unsafe {
-        let f = V([0.0, 1.0]);
-        let _a = f.0[0];
-    }
+    let f = V([0.0, 1.0]);
+    let _a = f.0[0];
 }
 
 #[cfg(all(not(jit), target_arch = "x86_64", any(target_os = "linux", target_os = "darwin")))]