about summary refs log tree commit diff
path: root/example
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2021-03-18 12:20:24 +0100
committerbjorn3 <bjorn3@users.noreply.github.com>2021-03-18 12:23:55 +0100
commit0069007d5b17b19bf6a7686dec7dee7be46dcd47 (patch)
treea2c7d0743b57b93434f3d4340b9e326f74e9d6f0 /example
parent664b25ea38f9a7e826048df1490a101adbc7d6d5 (diff)
downloadrust-0069007d5b17b19bf6a7686dec7dee7be46dcd47.tar.gz
rust-0069007d5b17b19bf6a7686dec7dee7be46dcd47.zip
Avoid nightly feature usage where easily possible
Diffstat (limited to 'example')
-rw-r--r--example/mini_core_hello_world.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/example/mini_core_hello_world.rs b/example/mini_core_hello_world.rs
index 08ceaeb6544..ea37ca98b59 100644
--- a/example/mini_core_hello_world.rs
+++ b/example/mini_core_hello_world.rs
@@ -1,7 +1,4 @@
-#![feature(
-    no_core, start, lang_items, box_syntax, never_type, linkage,
-    extern_types, thread_local
-)]
+#![feature(no_core, lang_items, box_syntax, never_type, linkage, extern_types, thread_local)]
 #![no_core]
 #![allow(dead_code, non_camel_case_types)]