Skip to content

Commit f6611db

Browse files
Add const-ness tests for i32::signum
1 parent bd899d0 commit f6611db

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/test/run-pass/const-int-sign.rs

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
1+
#![feature(const_int_sign)]
2+
13
const NEGATIVE_A: bool = (-10i32).is_negative();
24
const NEGATIVE_B: bool = 10i32.is_negative();
3-
const POSITIVE_A: bool= (-10i32).is_positive();
4-
const POSITIVE_B: bool= 10i32.is_positive();
5+
const POSITIVE_A: bool = (-10i32).is_positive();
6+
const POSITIVE_B: bool = 10i32.is_positive();
7+
8+
const SIGNUM_POS: i32 = 10i32.signum();
9+
const SIGNUM_NIL: i32 = 0i32.signum();
10+
const SIGNUM_NEG: i32 = (-42i32).signum();
511

612
fn main() {
713
assert!(NEGATIVE_A);
814
assert!(!NEGATIVE_B);
915
assert!(!POSITIVE_A);
1016
assert!(POSITIVE_B);
17+
18+
assert_eq!(SIGNUM_POS, 1);
19+
assert_eq!(SIGNUM_NIL, 0);
20+
assert_eq!(SIGNUM_NEG, -1);
1121
}

0 commit comments

Comments
 (0)