about summary refs log tree commit diff
path: root/src/test/run-pass/next-power-of-two-overflow-ndebug.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/next-power-of-two-overflow-ndebug.rs')
-rw-r--r--src/test/run-pass/next-power-of-two-overflow-ndebug.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/run-pass/next-power-of-two-overflow-ndebug.rs b/src/test/run-pass/next-power-of-two-overflow-ndebug.rs
index f2312b70be6..b05c1863d90 100644
--- a/src/test/run-pass/next-power-of-two-overflow-ndebug.rs
+++ b/src/test/run-pass/next-power-of-two-overflow-ndebug.rs
@@ -11,8 +11,6 @@
 // compile-flags: -C debug_assertions=no
 // ignore-emscripten dies with an LLVM error
 
-#![feature(i128_type)]
-
 fn main() {
     for i in 129..256 {
         assert_eq!((i as u8).next_power_of_two(), 0);