about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorEduardo Sánchez Muñoz <eduardosm-dev@e64.io>2024-11-23 18:06:35 +0100
committerEduardo Sánchez Muñoz <eduardosm-dev@e64.io>2024-11-23 18:42:44 +0100
commit6f7dc380310acdb6cc6de922b93619b6c16018d7 (patch)
tree47384da367d36fcb3db0613d83c023ffecb42510 /tests
parentff1737bb00913444173658b4e0b274fd79aabf66 (diff)
downloadrust-6f7dc380310acdb6cc6de922b93619b6c16018d7.tar.gz
rust-6f7dc380310acdb6cc6de922b93619b6c16018d7.zip
Stabilize `const_float_methods`
Diffstat (limited to 'tests')
-rw-r--r--tests/ui/consts/const-eval/float_methods.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/ui/consts/const-eval/float_methods.rs b/tests/ui/consts/const-eval/float_methods.rs
index 49c31f68c5f..853f75825ac 100644
--- a/tests/ui/consts/const-eval/float_methods.rs
+++ b/tests/ui/consts/const-eval/float_methods.rs
@@ -1,7 +1,6 @@
 //@ run-pass
 //! Tests the float intrinsics: min, max, abs, copysign
 
-#![feature(const_float_methods)]
 #![feature(f16, f128)]
 
 const F16_MIN: f16 = 1.0_f16.min(0.5_f16);