about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-11-29 12:14:03 -0800
committerAlex Crichton <alex@alexcrichton.com>2017-11-29 21:11:20 -0800
commita850bb0e5d07212ae716f447f3f69f6e4ce467da (patch)
tree2915b18366da7635096986b24d0cf97739f1fd56 /src/libcore
parent78fcf338833bd265c7f8dd1e46caf02b66039bb8 (diff)
downloadrust-a850bb0e5d07212ae716f447f3f69f6e4ce467da.tar.gz
rust-a850bb0e5d07212ae716f447f3f69f6e4ce467da.zip
Update bootstrap compiler
Also remove a number of `stage0` annotations and such
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/lib.rs2
-rw-r--r--src/libcore/marker.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index 07b45ad6a50..d5190b65863 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -90,7 +90,7 @@
 #![feature(unboxed_closures)]
 #![feature(untagged_unions)]
 #![feature(unwind_attributes)]
-#![cfg_attr(not(stage0), feature(doc_spotlight))]
+#![feature(doc_spotlight)]
 
 #[prelude_import]
 #[allow(unused)]
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index 0b0724b7a26..17e77654cf5 100644
--- a/src/libcore/marker.rs
+++ b/src/libcore/marker.rs
@@ -39,7 +39,6 @@ use hash::Hasher;
 /// [arc]: ../../std/sync/struct.Arc.html
 /// [ub]: ../../reference/behavior-considered-undefined.html
 #[stable(feature = "rust1", since = "1.0.0")]
-#[cfg_attr(stage0, lang = "send")]
 #[rustc_on_unimplemented = "`{Self}` cannot be sent between threads safely"]
 pub unsafe trait Send {
     // empty.