]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/std-sync-right-kind-impls.rs
std: Clean out deprecated APIs
[rust.git] / src / test / run-pass / std-sync-right-kind-impls.rs
index b8e05c06c83b77387d4dfab97822ff6a2fff9f4d..7332f098b96fa770d62726a759120718dbb92554 100644 (file)
@@ -11,7 +11,7 @@
 // pretty-expanded FIXME #23616
 
 #![feature(static_mutex, static_rwlock, static_condvar)]
-#![feature(arc_weak, semaphore)]
+#![feature(semaphore)]
 
 use std::sync;
 
@@ -24,7 +24,6 @@ fn main() {
     assert_both::<sync::Mutex<()>>();
     assert_both::<sync::Condvar>();
     assert_both::<sync::RwLock<()>>();
-    assert_both::<sync::Semaphore>();
     assert_both::<sync::Barrier>();
     assert_both::<sync::Arc<()>>();
     assert_both::<sync::Weak<()>>();