about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorTrevor Spiteri <tspiteri@ieee.org>2020-06-29 10:36:41 +0200
committerTrevor Spiteri <tspiteri@ieee.org>2020-06-29 10:36:41 +0200
commit056d925167318636fcf975c8ffb81efebdc9bca3 (patch)
tree49e002f62d3c8d08819d4cc678cf99700c05b6e2 /src/test
parentc1c674c2dbfe3f6dc47d11368c1b5ee4ab008799 (diff)
downloadrust-056d925167318636fcf975c8ffb81efebdc9bca3.tar.gz
rust-056d925167318636fcf975c8ffb81efebdc9bca3.zip
stabilize const_int_sign
Diffstat (limited to 'src/test')
-rw-r--r--src/test/ui/consts/const-int-sign-rpass.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/ui/consts/const-int-sign-rpass.rs b/src/test/ui/consts/const-int-sign-rpass.rs
index dc46fce39a9..63c191d4227 100644
--- a/src/test/ui/consts/const-int-sign-rpass.rs
+++ b/src/test/ui/consts/const-int-sign-rpass.rs
@@ -1,7 +1,5 @@
 // run-pass
 
-#![feature(const_int_sign)]
-
 const NEGATIVE_A: bool = (-10i32).is_negative();
 const NEGATIVE_B: bool = 10i32.is_negative();
 const POSITIVE_A: bool = (-10i32).is_positive();