about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2025-01-23 14:54:18 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2025-02-02 18:28:08 +0000
commitcc7e3a6228e3016c069b7f62ed40004ede6fafb8 (patch)
tree3d4eb60e0cf646a603d05e38c946c4752895a2e6
parent05cbf03d8f98ca23bff64ea40925df3029d0dd89 (diff)
downloadrust-cc7e3a6228e3016c069b7f62ed40004ede6fafb8.tar.gz
rust-cc7e3a6228e3016c069b7f62ed40004ede6fafb8.zip
Remove stabilized feature gate
-rw-r--r--library/std/tests/floats/lib.rs2
-rw-r--r--library/std/tests/sync/lib.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/library/std/tests/floats/lib.rs b/library/std/tests/floats/lib.rs
index 79813871ed9..ad82f1a44e7 100644
--- a/library/std/tests/floats/lib.rs
+++ b/library/std/tests/floats/lib.rs
@@ -1,4 +1,4 @@
-#![feature(f16, f128, float_gamma, float_next_up_down, float_minimum_maximum)]
+#![feature(f16, f128, float_gamma, float_minimum_maximum)]
 
 use std::fmt;
 use std::ops::{Add, Div, Mul, Rem, Sub};
diff --git a/library/std/tests/sync/lib.rs b/library/std/tests/sync/lib.rs
index 6bf320d52f2..51190f0894f 100644
--- a/library/std/tests/sync/lib.rs
+++ b/library/std/tests/sync/lib.rs
@@ -2,7 +2,6 @@
 #![feature(mapped_lock_guards)]
 #![feature(mpmc_channel)]
 #![feature(once_cell_try)]
-#![feature(once_wait)]
 #![feature(lock_value_accessors)]
 #![feature(reentrant_lock)]
 #![feature(rwlock_downgrade)]