]> git.lizzy.rs Git - rust.git/blobdiff - src/rtstartup/rsend.rs
Minor grammar fix 'can not' -> 'cannot'
[rust.git] / src / rtstartup / rsend.rs
index 915c2355b04849608e939ebbccd59198ec434c1a..4c48d9af0e1f442df4fb6f68a7944163d158e75a 100644 (file)
 
 // See rsbegin.rs for details.
 
+#![feature(no_core, lang_items)]
 #![crate_type="rlib"]
-#![no_std]
+#![no_core]
+
+#[lang = "sized"]
+trait Sized {}
+#[lang = "sync"]
+trait Sync {}
+impl<T> Sync for T {}
 
 #[cfg(all(target_os="windows", target_arch = "x86", target_env="gnu"))]
 pub mod eh_frames {