about summary refs log tree commit diff
path: root/src/libcoretest/num
diff options
context:
space:
mode:
authorBrendan Zabarauskas <bjzaba@yahoo.com.au>2014-11-13 00:02:42 +1100
committerBrendan Zabarauskas <bjzaba@yahoo.com.au>2014-11-13 03:46:03 +1100
commitde938b6ca1a2b6b6df65d5935c765a7c25fbce84 (patch)
treef8b7c283989f7ac9a7694989cfd3a4be71e74dee /src/libcoretest/num
parente965ba85ca689ad77f63b7f0af9d7e337dcb4825 (diff)
downloadrust-de938b6ca1a2b6b6df65d5935c765a7c25fbce84.tar.gz
rust-de938b6ca1a2b6b6df65d5935c765a7c25fbce84.zip
Remove Signed trait and add SignedInt trait
The methods have been moved into Float and SignedInt
Diffstat (limited to 'src/libcoretest/num')
-rw-r--r--src/libcoretest/num/int_macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcoretest/num/int_macros.rs b/src/libcoretest/num/int_macros.rs
index a1b096bf454..5e2530ef2a9 100644
--- a/src/libcoretest/num/int_macros.rs
+++ b/src/libcoretest/num/int_macros.rs
@@ -15,7 +15,7 @@ macro_rules! int_module (($T:ty, $T_i:ident) => (
 mod tests {
     use core::$T_i::*;
     use core::int;
-    use core::num::Int;
+    use core::num::{Int, SignedInt};
     use num;
 
     #[test]